Skip to content

Commit 486c2c8

Browse files
Finish initialisation by running the generator script.
1 parent ed83b10 commit 486c2c8

File tree

11 files changed

+12
-69
lines changed

11 files changed

+12
-69
lines changed

fastlane/Appfile

Lines changed: 1 addition & 1 deletion
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.osfilesystemlib") # e.g. com.krausefx.app

scripts/generator_script.sh

Lines changed: 0 additions & 57 deletions
This file was deleted.

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = "LibTemplatePlaceholder"
1+
rootProject.name = "OSFilesystemLib"

sonar-project.properties

Lines changed: 1 addition & 1 deletion
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_OSFilesystemLib-Android
44
sonar.host.url=https://sonarcloud.io
55

66
sonar.language=kotlin
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package organizationidplaceholder.libtemplateplaceholder
1+
package io.ionic.libs.osfilesystemlib
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.osfilesystemlib", appContext.packageName)
2323
}
2424
}

src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
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.osfilesystemlib">
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.OSFilesystemLib">
1212
<activity
1313
android:name=".MainActivity"
1414
android:exported="true">

src/main/java/organizationidplaceholder/libtemplateplaceholder/MainActivity.kt renamed to src/main/java/io.ionic.libs/osfilesystemlib/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package organizationidplaceholder.libtemplateplaceholder
1+
package io.ionic.libs.osfilesystemlib
22

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

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

Lines changed: 1 addition & 1 deletion
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.OSFilesystemLib" 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

Lines changed: 1 addition & 1 deletion
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">OSFilesystemLib</string>
33
</resources>

src/main/res/values/themes.xml

Lines changed: 1 addition & 1 deletion
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.OSFilesystemLib" 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>

0 commit comments

Comments
 (0)