Skip to content

Commit 639f618

Browse files
authored
Merge pull request #20 from mngoe/feature-29921
add products package management
2 parents b9b681f + 59b2b84 commit 639f618

41 files changed

Lines changed: 1135 additions & 52 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.DS_Store

10 KB
Binary file not shown.

claimManagement/build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ android {
2424

2525
defaultConfig {
2626
applicationId "org.openimis.imisclaims"
27-
minSdkVersion 21
27+
minSdkVersion 23
2828
targetSdkVersion 32
2929
versionCode 4
3030
versionName "2.0.1"
@@ -125,7 +125,7 @@ android {
125125
local {
126126
applicationIdSuffix ".local"
127127
resValue "string", "app_name_claims", "Claims Local"
128-
buildConfigField "String", "API_BASE_URL", '"http://10.0.2.2:35787/"'
128+
buildConfigField "String", "API_BASE_URL", '"http:/10.0.2.2:8000/"'
129129
dimension 'std'
130130
}
131131
cli {
@@ -216,14 +216,15 @@ dependencies {
216216
implementation 'commons-io:commons-io:2.11.0'
217217
implementation 'com.google.android.material:material:1.0.0'
218218
implementation 'androidx.appcompat:appcompat:1.0.0'
219+
implementation 'org.apache.httpcomponents:httpclient:4.5.9'
219220
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
220221
implementation 'com.squareup.okhttp3:logging-interceptor:4.11.0'
221222
implementation('com.apollographql.apollo:apollo-runtime:2.5.14')
222223
implementation ('com.apollographql.apollo:apollo-android-support:2.5.14'){
223224
because("Apollo 3+ only works with Kotlin coroutines")
224225
}
225226
testImplementation 'junit:junit:4.12'
226-
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
227+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
227228
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
228229
implementation group: 'com.squareup.picasso', name: 'picasso', version: '2.71828'
229230
implementation group: 'net.lingala.zip4j', name: 'zip4j', version: '1.2.7'
6 KB
Binary file not shown.
6 KB
Binary file not shown.
6 KB
Binary file not shown.
6 KB
Binary file not shown.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package org.openimis.imisclaims;
2+
3+
public class Escape {
4+
public boolean CheckCHFID(String InsureeNumber) {
5+
if (InsureeNumber.length() == 0){
6+
return false;
7+
}
8+
9+
return true;
10+
}
11+
}

claimManagement/src/csu/.DS_Store

6 KB
Binary file not shown.
6 KB
Binary file not shown.
6 KB
Binary file not shown.

0 commit comments

Comments
 (0)