|
|
|
@ -13,12 +13,12 @@ def getGitHash = { -> return getCmdOutput(["git", "rev-parse", "--short", "HEAD"
|
|
|
|
|
def getGitBranch = { -> return getCmdOutput(["git", "rev-parse", "--abbrev-ref", "HEAD"]) }
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
compileSdkVersion 28
|
|
|
|
|
compileSdkVersion 29
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
applicationId "com.beemdevelopment.aegis"
|
|
|
|
|
minSdkVersion 19
|
|
|
|
|
targetSdkVersion 28
|
|
|
|
|
targetSdkVersion 29
|
|
|
|
|
versionCode 21
|
|
|
|
|
versionName "1.0.2"
|
|
|
|
|
buildConfigField "String", "GIT_HASH", "\"${getGitHash()}\""
|
|
|
|
@ -63,23 +63,21 @@ android {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
def libsuVersion = '2.3.2'
|
|
|
|
|
def libsuVersion = '2.5.1'
|
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
|
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
|
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
|
|
|
implementation 'androidx.preference:preference:1.0.0'
|
|
|
|
|
implementation 'com.takisoft.preferencex:preferencex:1.0.0'
|
|
|
|
|
implementation 'androidx.preference:preference:1.1.0'
|
|
|
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
|
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
|
|
|
implementation 'com.getbase:floatingactionbutton:1.10.1'
|
|
|
|
|
implementation 'com.github.apl-devs:appintro:v4.2.2'
|
|
|
|
|
implementation 'com.github.apl-devs:appintro:5.1.0'
|
|
|
|
|
implementation 'com.github.avito-tech:krop:0.44'
|
|
|
|
|
implementation 'com.madgag.spongycastle:core:1.58.0.0'
|
|
|
|
|
implementation 'com.mattprecious.swirl:swirl:1.0.0'
|
|
|
|
|
implementation 'de.hdodenhof:circleimageview:2.2.0'
|
|
|
|
|
implementation 'me.dm7.barcodescanner:zxing:1.9'
|
|
|
|
|
implementation 'com.mattprecious.swirl:swirl:1.2.0'
|
|
|
|
|
implementation 'de.hdodenhof:circleimageview:3.0.1'
|
|
|
|
|
implementation 'me.dm7.barcodescanner:zxing:1.9.8'
|
|
|
|
|
implementation "com.github.topjohnwu.libsu:core:${libsuVersion}"
|
|
|
|
|
implementation "com.github.topjohnwu.libsu:io:${libsuVersion}"
|
|
|
|
|
implementation 'com.github.bumptech.glide:annotations:4.9.0'
|
|
|
|
@ -92,6 +90,6 @@ dependencies {
|
|
|
|
|
}
|
|
|
|
|
annotationProcessor 'androidx.annotation:annotation:1.1.0'
|
|
|
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
|
|
|
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.4.2'
|
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.4.2'
|
|
|
|
|
}
|
|
|
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.5.2'
|
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.2'
|
|
|
|
|
}
|
|
|
|
|