Skip to content

Commit a6c8ec9

Browse files
authored
Merge pull request #12 from shiv-validus/feature/rename-app-structure-and-package
chore: add working build scripts and env setup
2 parents dee58a6 + 97b08c3 commit a6c8ec9

5 files changed

Lines changed: 10114 additions & 12955 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,5 @@ yarn-error.log
8080
.env.staging
8181
.env.production
8282

83+
84+
.fake

android/app/build.gradle

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -87,20 +87,22 @@ android {
8787
compileSdk rootProject.ext.compileSdkVersion
8888

8989
flavorDimensions "default"
90+
9091
productFlavors {
91-
production {
92-
applicationIdSuffix "rnnewarchitecturedemo.production"
93-
resValue "string", "build_config_package", "com.validus.ignitekit"
94-
}
95-
staging {
96-
applicationIdSuffix "rnnewarchitecturedemo.staging"
97-
resValue "string", "build_config_package", "com.validus.ignitekit"
98-
}
99-
development {
100-
applicationIdSuffix "rnnewarchitecturedemo.development"
101-
resValue "string", "build_config_package", "com.validus.ignitekit"
102-
}
92+
production {
93+
applicationIdSuffix ".production"
94+
resValue "string", "build_config_package", "com.validus.ignitekit"
95+
}
96+
staging {
97+
applicationIdSuffix ".staging"
98+
resValue "string", "build_config_package", "com.validus.ignitekit"
10399
}
100+
development {
101+
applicationIdSuffix ".development"
102+
resValue "string", "build_config_package", "com.validus.ignitekit"
103+
}
104+
}
105+
104106

105107
namespace "com.validus.ignitekit"
106108
defaultConfig {

0 commit comments

Comments
 (0)