Skip to content

Commit

Permalink
Merge pull request #136 from opensrp/fix-location-spinner
Browse files Browse the repository at this point in the history
Fix location spinner
  • Loading branch information
hamza-vd authored Oct 18, 2021
2 parents 778ab95 + fd1d20f commit 2e20513
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions opensrp-unicef-tunisia/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ android {
if (variant.name == "debug") {
variant.outputs.each { output ->
output.versionCodeOverride = 4
output.versionNameOverride = "0.2.0-debug"
output.versionNameOverride = "0.2.1-debug"
}
} else if (variant.name == "preview") {
variant.outputs.each { output ->
output.versionCodeOverride = 4
output.versionNameOverride = "0.2.0-preview"
output.versionNameOverride = "0.2.1-preview"
}
} else if (variant.name == "release") {
variant.outputs.each { output ->
Expand Down Expand Up @@ -284,7 +284,7 @@ dependencies {
exclude group: 'com.ibm.fhir', module: 'fhir-path'
}

implementation('org.smartregister:opensrp-client-core:4.3.9-SNAPSHOT@aar') {
implementation('org.smartregister:opensrp-client-core:4.3.23-BETA-SNAPSHOT@aar') {
transitive = true
exclude group: 'id.zelory', module: 'compressor'
exclude group: 'com.android.support', module: 'appcompat-v7'
Expand Down Expand Up @@ -322,7 +322,7 @@ dependencies {
exclude group: 'com.ibm.fhir', module: 'fhir-path'
}

implementation('org.smartregister:opensrp-client-native-form:2.1.0-SNAPSHOT@aar') {
implementation('org.smartregister:opensrp-client-native-form:2.1.11-SNAPSHOT@aar') {
transitive = true
exclude group: 'com.android.support', module: 'recyclerview-v7'
exclude group: 'com.android.support', module: 'appcompat-v7'
Expand Down Expand Up @@ -354,7 +354,7 @@ dependencies {
// explicitly depend on RxJava's latest version for bug fixes and new features.
implementation 'io.reactivex.rxjava2:rxjava:2.2.19'
implementation 'com.evernote:android-job:1.2.6'
implementation 'com.github.lecho:hellocharts-android:v1.5.8'
implementation 'com.github.lecho:hellocharts-android:1.5.8'
implementation 'id.zelory:compressor:2.1.1'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.cardview:cardview:1.0.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public void onCreate() {
initRepositories();

SyncStatusBroadcastReceiver.init(this);
LocationHelper.init(new ArrayList<>(Arrays.asList(BuildConfig.LOCATION_LEVELS)), BuildConfig.DEFAULT_LOCATION);
LocationHelper.init(new ArrayList<>(Arrays.asList(BuildConfig.ALLOWED_LEVELS)), BuildConfig.DEFAULT_LOCATION);

jsonSpecHelper = new JsonSpecHelper(this);

Expand Down

0 comments on commit 2e20513

Please sign in to comment.