Skip to content

Commit a431761

Browse files
committed
Finish initialisation by running the generator script.
1 parent ca919a8 commit a431761

File tree

12 files changed

+14
-71
lines changed

12 files changed

+14
-71
lines changed

docs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# LibTemplatePlaceholder
1+
# ion-android
22

3-
Welcome to **LibTemplatePlaceholder**. This repository serves as a template to create repositories used to build Android libraries. This file will guide you through that process, that is defined by two sequential steps:
3+
Welcome to **ion-android**. This repository serves as a template to create repositories used to build Android libraries. This file will guide you through that process, that is defined by two sequential steps:
44

55
1. Use the current repository as the template for the new one.
66
2. Clone the new repository on our machine.

fastlane/Appfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
json_key_file("") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
2-
package_name("organizationidplaceholder.libtemplateplaceholder") # e.g. com.krausefx.app
2+
package_name("io.ionic.libs.ionfiletransferlib.ion-android") # e.g. com.krausefx.app

scripts/generator_script.sh

-57
This file was deleted.

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = "LibTemplatePlaceholder"
1+
rootProject.name = "ion-android"

sonar-project.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Organization and project keys are displayed in the right sidebar of the project homepage
22
sonar.organization=outsystemsrd
3-
sonar.projectKey=OutSystems_LibTemplatePlaceholder-Android
3+
sonar.projectKey=OutSystems_ion-android-Android
44
sonar.host.url=https://sonarcloud.io
55

66
sonar.language=kotlin

src/androidTest/java/organizationidplaceholder/libtemplateplaceholder/ExampleInstrumentedTest.kt src/androidTest/java/io.ionic.libs.ionfiletransferlib/ion-android/ExampleInstrumentedTest.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package organizationidplaceholder.libtemplateplaceholder
1+
package io.ionic.libs.ionfiletransferlib.ion-android
22

33
import androidx.test.platform.app.InstrumentationRegistry
44
import androidx.test.ext.junit.runners.AndroidJUnit4
@@ -19,6 +19,6 @@ class ExampleInstrumentedTest {
1919
fun useAppContext() {
2020
// Context of the app under test.
2121
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
22-
assertEquals("organizationidplaceholder.libtemplateplaceholder", appContext.packageName)
22+
assertEquals("io.ionic.libs.ionfiletransferlib.ion-android", appContext.packageName)
2323
}
2424
}

src/main/AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="organizationidplaceholder.libtemplateplaceholder">
3+
package="io.ionic.libs.ionfiletransferlib.ion-android">
44

55
<application
66
android:allowBackup="true"
77
android:icon="@mipmap/ic_launcher"
88
android:label="@string/app_name"
99
android:roundIcon="@mipmap/ic_launcher_round"
1010
android:supportsRtl="true"
11-
android:theme="@style/Theme.LibTemplatePlaceholder">
11+
android:theme="@style/Theme.ion-android">
1212
<activity
1313
android:name=".MainActivity"
1414
android:exported="true">

src/main/java/organizationidplaceholder/libtemplateplaceholder/MainActivity.kt src/main/java/io.ionic.libs.ionfiletransferlib/ion-android/MainActivity.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package organizationidplaceholder.libtemplateplaceholder
1+
package io.ionic.libs.ionfiletransferlib.ion-android
22

33
import androidx.appcompat.app.AppCompatActivity
44
import android.os.Bundle

src/main/res/values-night/themes.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<resources xmlns:tools="http://schemas.android.com/tools">
22
<!-- Base application theme. -->
3-
<style name="Theme.LibTemplatePlaceholder" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
3+
<style name="Theme.ion-android" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
44
<!-- Primary brand color. -->
55
<item name="colorPrimary">@color/purple_200</item>
66
<item name="colorPrimaryVariant">@color/purple_700</item>

src/main/res/values/strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<resources>
2-
<string name="app_name">LibTemplatePlaceholder</string>
2+
<string name="app_name">ion-android</string>
33
</resources>

src/main/res/values/themes.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<resources xmlns:tools="http://schemas.android.com/tools">
22
<!-- Base application theme. -->
3-
<style name="Theme.LibTemplatePlaceholder" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
3+
<style name="Theme.ion-android" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
44
<!-- Primary brand color. -->
55
<item name="colorPrimary">@color/purple_500</item>
66
<item name="colorPrimaryVariant">@color/purple_700</item>

src/test/java/organizationidplaceholder/libtemplateplaceholder/ExampleUnitTest.kt src/test/java/io.ionic.libs.ionfiletransferlib/ion-android/ExampleUnitTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package organizationidplaceholder.libtemplateplaceholder
1+
package io.ionic.libs.ionfiletransferlib.ion-android
22

33
import org.junit.Test
44

0 commit comments

Comments
 (0)