Skip to content

Commit

Permalink
Merge pull request #3428 from vpPavithra/self/release-6.0.0_v13sdk
Browse files Browse the repository at this point in the history
Self/release 6.0.0 v13sdk
  • Loading branch information
swayangjit authored Jun 12, 2023
2 parents 551a2d1 + 488fd1b commit 7fb33e4
Show file tree
Hide file tree
Showing 4 changed files with 2,961 additions and 1,592 deletions.
10 changes: 3 additions & 7 deletions buildConfig/build-extras.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ android {
defaultConfig {
minSdkVersion 22
ext.buildNumber = System.getenv("TRAVIS_BUILD_NUMBER") ?: "local"
versionName "4.8.$ext.buildNumber"
versionName "6.0.$ext.buildNumber"
resValue("string", "_app_name", "${app_name}")
multiDexEnabled true

Expand Down Expand Up @@ -90,6 +90,7 @@ android {
resValue("string", "deeplink_base_url", "${dev_deeplink_base_url}")
buildConfigField 'String', 'MOBILE_APP_KEY', "\"${dev_mobile_app_key}\""
buildConfigField 'String', 'MOBILE_APP_SECRET', "\"${dev_mobile_app_secret}\""
buildConfigField 'String', 'CHANNEL_ID', "\"${dev_channel_id}\""
if (project.hasProperty("dev_deeplink_ncert_url")) {
resValue("string", "deeplink_ncert_url", "${dev_deeplink_ncert_url}")
} else {
Expand All @@ -114,9 +115,6 @@ android {
if (System.properties['dev_producer_id']) {
buildConfigField 'String', 'PRODUCER_ID', "\"${dev_producer_id}\""
}
if (System.properties['dev_channel_id']) {
buildConfigField 'String', 'CHANNEL_ID', "\"${dev_channel_id}\""
}
if (System.properties['dev_oauth_redirect_url']) {
buildConfigField "String", "OAUTH_REDIRECT_URL","\"${dev_oauth_redirect_url}\""
}
Expand All @@ -140,6 +138,7 @@ android {
resValue("string", "deeplink_base_url", "${staging_deeplink_base_url}")
buildConfigField 'String', 'MOBILE_APP_KEY', "\"${staging_mobile_app_key}\""
buildConfigField 'String', 'MOBILE_APP_SECRET', "\"${staging_mobile_app_secret}\""
buildConfigField 'String', 'CHANNEL_ID', "\"${staging_channel_id}\""
if (project.hasProperty("dev_deeplink_ncert_url")) {
resValue("string", "deeplink_ncert_url", "${staging_deeplink_ncert_url}")
} else {
Expand All @@ -164,9 +163,6 @@ android {
if (System.properties['staging_producer_id']) {
buildConfigField 'String', 'PRODUCER_ID', "\"${staging_producer_id}\""
}
if (System.properties['staging_channel_id']) {
buildConfigField 'String', 'CHANNEL_ID', "\"${staging_channel_id}\""
}
if (System.properties['staging_oauth_redirect_url']) {
buildConfigField "String", "OAUTH_REDIRECT_URL","\"${staging_oauth_redirect_url}\""
}
Expand Down
Loading

0 comments on commit 7fb33e4

Please sign in to comment.