mirror of
https://github.com/selfxyz/self.git
synced 2026-02-09 05:46:01 -05:00
66 lines
2.3 KiB
Groovy
66 lines
2.3 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion 33
|
|
buildToolsVersion "25.0.1"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 22
|
|
versionCode 1
|
|
versionName "1.0"
|
|
multiDexEnabled = true
|
|
}
|
|
packagingOptions {
|
|
exclude 'META-INF/LICENSE'
|
|
exclude 'META-INF/NOTICE'
|
|
}
|
|
dexOptions {
|
|
javaMaxHeapSize "4g"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt')
|
|
}
|
|
}
|
|
lintOptions {
|
|
warning 'InvalidPackage'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// implementation files('../../app/libs/jmrtd-0.5.5.jar')
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
implementation 'com.google.code.gson:gson:2.8.9' // Check for the latest version
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
|
implementation 'com.google.android.material:material:1.7.0'
|
|
implementation 'androidx.core:core-ktx:1.9.0'
|
|
implementation 'com.wdullaer:materialdatetimepicker:3.5.2'
|
|
implementation 'org.jmrtd:jmrtd:0.7.18'
|
|
implementation 'net.sf.scuba:scuba-sc-android:0.0.18'
|
|
implementation 'com.madgag.spongycastle:prov:1.54.0.0'
|
|
implementation 'com.gemalto.jp2:jp2-android:1.0.3'
|
|
implementation 'com.github.mhshams:jnbis:1.1.0'
|
|
implementation 'org.bouncycastle:bcpkix-jdk15on:1.65' // do not update
|
|
implementation 'commons-io:commons-io:2.8.0'
|
|
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
|
|
// implementation platform('com.google.firebase:firebase-bom:31.0.0')
|
|
// googleImplementation 'com.google.firebase:firebase-analytics-ktx'
|
|
// googleImplementation 'com.google.firebase:firebase-crashlytics'
|
|
// googleImplementation 'com.google.android.gms:play-services-ads:21.3.0'
|
|
// googleImplementation 'com.google.android.play:review-ktx:2.0.1'
|
|
|
|
// implementation 'org.jmrtd:jmrtd:0.5.5'
|
|
// implementation 'com.android.support:multidex:1.0.3'
|
|
// implementation 'net.sf.scuba:scuba-sc-android:0.0.9'
|
|
// implementation 'com.madgag.spongycastle:prov:1.54.0.0'
|
|
// implementation 'com.github.mhshams:jnbis:1.1.0'
|
|
implementation 'com.android.support:appcompat-v7:25.1.0'
|
|
implementation 'edu.ucar:jj2000:5.2'
|
|
implementation 'com.facebook.react:react-native:+'
|
|
}
|
|
|
|
|