diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index ab50a8f2..bb4058c9 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -653,6 +653,32 @@ jobs:
ANDROID_KEYSTORE_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_PASSWORD_MOH_NEPAL_MHEALTH }}
ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_KEY_PASSWORD_MOH_NEPAL_MHEALTH }}
+ - name: Unpack secrets LUMBINI_CHIS
+ env:
+ ANDROID_SECRETS_KEY: ${{ secrets.ANDROID_SECRETS_KEY_LUMBINI_CHIS }}
+ ANDROID_SECRETS_IV: ${{ secrets.ANDROID_SECRETS_IV_LUMBINI_CHIS }}
+ run: make org=LUMBINI_CHIS keydec
+
+ - name: Assemble LUMBINI_CHIS
+ uses: maierj/fastlane-action@v1.4.0
+ with:
+ lane: build
+ options: '{ "flavor": "LUMBINI_CHIS" }'
+ env:
+ ANDROID_KEYSTORE_PATH: LUMBINI_CHIS.keystore
+ ANDROID_KEYSTORE_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_PASSWORD_LUMBINI_CHIS }}
+ ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_PASSWORD_LUMBINI_CHIS }}
+
+ - name: Bundle LUMBINI_CHIS
+ uses: maierj/fastlane-action@v1.4.0
+ with:
+ lane: bundle
+ options: '{ "flavor": "LUMBINI_CHIS" }'
+ env:
+ ANDROID_KEYSTORE_PATH: LUMBINI_CHIS.keystore
+ ANDROID_KEYSTORE_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_PASSWORD_LUMBINI_CHIS }}
+ ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_PASSWORD_LUMBINI_CHIS }}
+
- name: GitHub release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
diff --git a/build.gradle b/build.gradle
index 114de215..0feacf7c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -464,6 +464,12 @@ android {
dimension = 'brand'
applicationId = 'org.medicmobile.webapp.mobile.moh_nepal_mhealth'
}
+
+ lumbini_chis {
+ dimension = 'brand'
+ applicationId = 'org.medicmobile.webapp.mobile.lumbini'
+ }
+
}
splits {
diff --git a/secrets/secrets-lumbini_chis.tar.gz.enc b/secrets/secrets-lumbini_chis.tar.gz.enc
new file mode 100644
index 00000000..af796425
Binary files /dev/null and b/secrets/secrets-lumbini_chis.tar.gz.enc differ
diff --git a/src/lumbini_chis/AndroidManifest.xml b/src/lumbini_chis/AndroidManifest.xml
new file mode 100644
index 00000000..c1291f6d
--- /dev/null
+++ b/src/lumbini_chis/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
diff --git a/src/lumbini_chis/ic_launcher-playstore.png b/src/lumbini_chis/ic_launcher-playstore.png
new file mode 100644
index 00000000..44820698
Binary files /dev/null and b/src/lumbini_chis/ic_launcher-playstore.png differ
diff --git a/src/lumbini_chis/res/mipmap-anydpi-v26/ic_launcher.xml b/src/lumbini_chis/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 00000000..036d09bc
--- /dev/null
+++ b/src/lumbini_chis/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/lumbini_chis/res/mipmap-anydpi-v26/ic_launcher_round.xml b/src/lumbini_chis/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 00000000..036d09bc
--- /dev/null
+++ b/src/lumbini_chis/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/lumbini_chis/res/mipmap-hdpi/ic_launcher.webp b/src/lumbini_chis/res/mipmap-hdpi/ic_launcher.webp
new file mode 100644
index 00000000..5ebbb151
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-hdpi/ic_launcher.webp differ
diff --git a/src/lumbini_chis/res/mipmap-hdpi/ic_launcher_foreground.webp b/src/lumbini_chis/res/mipmap-hdpi/ic_launcher_foreground.webp
new file mode 100644
index 00000000..e88df47c
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-hdpi/ic_launcher_foreground.webp differ
diff --git a/src/lumbini_chis/res/mipmap-hdpi/ic_launcher_round.webp b/src/lumbini_chis/res/mipmap-hdpi/ic_launcher_round.webp
new file mode 100644
index 00000000..25852e6f
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-hdpi/ic_launcher_round.webp differ
diff --git a/src/lumbini_chis/res/mipmap-mdpi/ic_launcher.webp b/src/lumbini_chis/res/mipmap-mdpi/ic_launcher.webp
new file mode 100644
index 00000000..e79caf1f
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-mdpi/ic_launcher.webp differ
diff --git a/src/lumbini_chis/res/mipmap-mdpi/ic_launcher_foreground.webp b/src/lumbini_chis/res/mipmap-mdpi/ic_launcher_foreground.webp
new file mode 100644
index 00000000..2bd4c72e
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-mdpi/ic_launcher_foreground.webp differ
diff --git a/src/lumbini_chis/res/mipmap-mdpi/ic_launcher_round.webp b/src/lumbini_chis/res/mipmap-mdpi/ic_launcher_round.webp
new file mode 100644
index 00000000..6ed098b0
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-mdpi/ic_launcher_round.webp differ
diff --git a/src/lumbini_chis/res/mipmap-xhdpi/ic_launcher.webp b/src/lumbini_chis/res/mipmap-xhdpi/ic_launcher.webp
new file mode 100644
index 00000000..1bec9939
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-xhdpi/ic_launcher.webp differ
diff --git a/src/lumbini_chis/res/mipmap-xhdpi/ic_launcher_foreground.webp b/src/lumbini_chis/res/mipmap-xhdpi/ic_launcher_foreground.webp
new file mode 100644
index 00000000..7ee9c45d
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-xhdpi/ic_launcher_foreground.webp differ
diff --git a/src/lumbini_chis/res/mipmap-xhdpi/ic_launcher_round.webp b/src/lumbini_chis/res/mipmap-xhdpi/ic_launcher_round.webp
new file mode 100644
index 00000000..db5291c4
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-xhdpi/ic_launcher_round.webp differ
diff --git a/src/lumbini_chis/res/mipmap-xxhdpi/ic_launcher.webp b/src/lumbini_chis/res/mipmap-xxhdpi/ic_launcher.webp
new file mode 100644
index 00000000..e7d9a62b
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-xxhdpi/ic_launcher.webp differ
diff --git a/src/lumbini_chis/res/mipmap-xxhdpi/ic_launcher_foreground.webp b/src/lumbini_chis/res/mipmap-xxhdpi/ic_launcher_foreground.webp
new file mode 100644
index 00000000..c732a585
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-xxhdpi/ic_launcher_foreground.webp differ
diff --git a/src/lumbini_chis/res/mipmap-xxhdpi/ic_launcher_round.webp b/src/lumbini_chis/res/mipmap-xxhdpi/ic_launcher_round.webp
new file mode 100644
index 00000000..dcf2ecde
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-xxhdpi/ic_launcher_round.webp differ
diff --git a/src/lumbini_chis/res/mipmap-xxxhdpi/ic_launcher.webp b/src/lumbini_chis/res/mipmap-xxxhdpi/ic_launcher.webp
new file mode 100644
index 00000000..d6257f15
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-xxxhdpi/ic_launcher.webp differ
diff --git a/src/lumbini_chis/res/mipmap-xxxhdpi/ic_launcher_foreground.webp b/src/lumbini_chis/res/mipmap-xxxhdpi/ic_launcher_foreground.webp
new file mode 100644
index 00000000..16260ae1
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-xxxhdpi/ic_launcher_foreground.webp differ
diff --git a/src/lumbini_chis/res/mipmap-xxxhdpi/ic_launcher_round.webp b/src/lumbini_chis/res/mipmap-xxxhdpi/ic_launcher_round.webp
new file mode 100644
index 00000000..3b861214
Binary files /dev/null and b/src/lumbini_chis/res/mipmap-xxxhdpi/ic_launcher_round.webp differ
diff --git a/src/lumbini_chis/res/values/ic_launcher_background.xml b/src/lumbini_chis/res/values/ic_launcher_background.xml
new file mode 100644
index 00000000..c5d5899f
--- /dev/null
+++ b/src/lumbini_chis/res/values/ic_launcher_background.xml
@@ -0,0 +1,4 @@
+
+
+ #FFFFFF
+
\ No newline at end of file
diff --git a/src/lumbini_chis/res/values/strings.xml b/src/lumbini_chis/res/values/strings.xml
new file mode 100644
index 00000000..469bdd32
--- /dev/null
+++ b/src/lumbini_chis/res/values/strings.xml
@@ -0,0 +1,5 @@
+
+
+ CHIS Lumbini
+ lumbini-ne.app.medicmobile.org
+