2019-04-23 14:58:57 +05:30
|
|
|
apply plugin: 'com.android.application'
|
2021-09-09 00:01:15 +05:30
|
|
|
apply plugin: 'com.google.gms.google-services'
|
|
|
|
|
apply plugin: 'com.google.firebase.crashlytics'
|
|
|
|
|
|
2019-04-23 14:58:57 +05:30
|
|
|
|
|
|
|
|
android {
|
2021-09-09 00:01:15 +05:30
|
|
|
compileSdkVersion 29
|
|
|
|
|
buildToolsVersion "29.0.3"
|
2019-04-23 14:58:57 +05:30
|
|
|
|
|
|
|
|
defaultConfig {
|
2021-09-09 00:01:15 +05:30
|
|
|
applicationId "no.spca.android.iisc"
|
2019-04-23 14:58:57 +05:30
|
|
|
minSdkVersion 18
|
2021-09-09 00:01:15 +05:30
|
|
|
targetSdkVersion 29
|
|
|
|
|
versionCode 78
|
|
|
|
|
versionName "2.9.0"
|
2019-04-23 14:58:57 +05:30
|
|
|
resConfigs "en"
|
2021-09-09 00:01:15 +05:30
|
|
|
multiDexEnabled true
|
|
|
|
|
|
2019-04-23 14:58:57 +05:30
|
|
|
|
|
|
|
|
vectorDrawables.useSupportLibrary = true
|
|
|
|
|
}
|
|
|
|
|
buildTypes {
|
|
|
|
|
debug {
|
2021-09-09 00:01:15 +05:30
|
|
|
minifyEnabled false
|
|
|
|
|
shrinkResources false
|
|
|
|
|
|
2019-04-23 14:58:57 +05:30
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled true
|
2021-09-09 00:01:15 +05:30
|
|
|
shrinkResources true
|
2019-04-23 14:58:57 +05:30
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
compileOptions {
|
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2021-09-09 00:01:15 +05:30
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
2019-04-23 14:58:57 +05:30
|
|
|
|
|
|
|
|
implementation 'com.google.android.gms:play-services-wearable:10.2.0'
|
|
|
|
|
|
2021-09-09 00:01:15 +05:30
|
|
|
implementation 'androidx.appcompat:appcompat:1.3.0-alpha01'
|
|
|
|
|
implementation 'androidx.preference:preference:1.1.1'
|
|
|
|
|
implementation 'de.hdodenhof:circleimageview:3.1.0'
|
|
|
|
|
|
|
|
|
|
implementation 'no.nordicsemi.android:log:2.2.0'
|
|
|
|
|
implementation 'no.nordicsemi.android.support.v18:scanner:1.4.3'
|
|
|
|
|
implementation 'org.apache.poi:poi:4.0.0'
|
|
|
|
|
implementation 'org.apache.poi:poi-ooxml:4.0.0'
|
|
|
|
|
implementation 'com.android.support:multidex:1.0.1'
|
|
|
|
|
|
|
|
|
|
implementation 'com.jjoe64:graphview:4.2.2'
|
|
|
|
|
|
|
|
|
|
implementation 'no.nordicsemi.android:dfu:1.10.3'
|
|
|
|
|
|
2019-04-23 14:58:57 +05:30
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0-alpha04'
|
2021-09-09 00:01:15 +05:30
|
|
|
|
|
|
|
|
|
|
|
|
|
implementation 'com.hbb20:ccp:2.4.0'
|
2019-04-23 14:58:57 +05:30
|
|
|
implementation 'androidx.preference:preference:1.1.0-alpha04'
|
|
|
|
|
implementation 'com.google.android.material:material:1.1.0-alpha05'
|
2021-09-09 00:01:15 +05:30
|
|
|
implementation 'com.google.android.material:material:1.1.0'
|
|
|
|
|
|
|
|
|
|
implementation 'com.google.firebase:firebase-database:16.0.4'
|
|
|
|
|
|
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0-alpha04'
|
|
|
|
|
|
|
|
|
|
implementation 'com.google.firebase:firebase-auth:16.0.5'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implementation 'androidx.preference:preference:1.1.0-alpha04'
|
2019-04-23 14:58:57 +05:30
|
|
|
|
|
|
|
|
implementation 'no.nordicsemi.android:log:2.2.0'
|
2021-09-09 00:01:15 +05:30
|
|
|
implementation 'com.chaos.view:pinview:1.4.3'
|
|
|
|
|
implementation "androidx.browser:browser:1.3.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implementation 'com.github.bumptech.glide:glide:4.11.0'
|
|
|
|
|
implementation 'com.firebaseui:firebase-ui-database:7.1.1'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implementation 'com.hbb20:ccp:2.4.0'
|
|
|
|
|
|
|
|
|
|
implementation 'com.google.firebase:firebase-auth:20.0.1'
|
2019-04-23 14:58:57 +05:30
|
|
|
|
2021-09-09 00:01:15 +05:30
|
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
|
|
|
|
|
|
|
|
implementation 'com.github.PhilJay:MPAndroidChart:v2.0.9'
|
|
|
|
|
|
|
|
|
|
implementation 'com.google.firebase:firebase-crashlytics:17.1.1'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implementation 'com.google.firebase:firebase-storage:16.0.4'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implementation 'no.nordicsemi.android:ble-common:2.1.1'
|
|
|
|
|
|
2019-04-23 14:58:57 +05:30
|
|
|
implementation('org.simpleframework:simple-xml:2.7.1') {
|
|
|
|
|
exclude group: 'stax', module: 'stax-api'
|
|
|
|
|
exclude group: 'xpp3', module: 'xpp3'
|
|
|
|
|
}
|
|
|
|
|
}
|