Skip to content

Commit

Permalink
Merge pull request #1632 from OpenSRP/fix_autheticator_diff
Browse files Browse the repository at this point in the history
Separate chw-apps authetication
  • Loading branch information
rkodev authored Dec 14, 2020
2 parents b5433fc + d09b877 commit b2dea0c
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 1 deletion.
2 changes: 1 addition & 1 deletion opensrp-chw/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ android {
dimension = 'baseDimension'
applicationIdSuffix ".togo"
versionCode 13
versionName "1.0.13"
versionName "1.1.1"
buildConfigField "int", "OPENMRS_UNIQUE_ID_INITIAL_BATCH_SIZE", '1000'
buildConfigField "int", "OPENMRS_UNIQUE_ID_BATCH_SIZE", '500'
buildConfigField "String", 'opensrp_url', '"https://wcaro-togo.smartregister.org/opensrp/"'
Expand Down
7 changes: 7 additions & 0 deletions opensrp-chw/src/ba/res/xml/authenticator.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="org.smartregister.chw.ba"
android:icon="@drawable/opensrp_logo"
android:smallIcon="@drawable/opensrp_logo"
android:label="@string/app_name"
android:accountPreferences="@xml/preferences"/>
7 changes: 7 additions & 0 deletions opensrp-chw/src/chad/res/xml/authenticator.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="org.smartregister.chw.chad"
android:icon="@drawable/opensrp_logo"
android:smallIcon="@drawable/opensrp_logo"
android:label="@string/app_name"
android:accountPreferences="@xml/preferences"/>
7 changes: 7 additions & 0 deletions opensrp-chw/src/guinea/res/xml/authenticator.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="org.smartregister.chw.guinea"
android:icon="@drawable/opensrp_logo"
android:smallIcon="@drawable/opensrp_logo"
android:label="@string/app_name"
android:accountPreferences="@xml/preferences"/>
7 changes: 7 additions & 0 deletions opensrp-chw/src/liberia/res/xml/authenticator.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="org.smartregister.chw"
android:icon="@drawable/opensrp_logo"
android:smallIcon="@drawable/opensrp_logo"
android:label="@string/app_name"
android:accountPreferences="@xml/preferences"/>
7 changes: 7 additions & 0 deletions opensrp-chw/src/lmh/res/xml/authenticator.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="org.smartregister.chw.lmh"
android:icon="@drawable/opensrp_logo"
android:smallIcon="@drawable/opensrp_logo"
android:label="@string/app_name"
android:accountPreferences="@xml/preferences"/>
7 changes: 7 additions & 0 deletions opensrp-chw/src/togo/res/xml/authenticator.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="org.smartregister.chw.togo"
android:icon="@drawable/opensrp_logo"
android:smallIcon="@drawable/opensrp_logo"
android:label="@string/app_name"
android:accountPreferences="@xml/preferences"/>

0 comments on commit b2dea0c

Please sign in to comment.