2016-08-15 21:29:41 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2018-09-25 16:26:57 +02:00
|
|
|
compileSdkVersion 28
|
2016-08-15 21:29:41 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
2019-02-07 22:39:33 +01:00
|
|
|
applicationId "com.beemdevelopment.aegis"
|
2016-11-13 18:00:13 +01:00
|
|
|
minSdkVersion 19
|
2018-09-25 17:04:55 +02:00
|
|
|
targetSdkVersion 28
|
2019-04-01 23:50:07 +02:00
|
|
|
versionCode 6
|
|
|
|
versionName "0.3"
|
2016-08-15 21:29:41 +02:00
|
|
|
}
|
|
|
|
buildTypes {
|
2017-12-12 12:25:55 +01:00
|
|
|
debug {
|
2017-12-13 22:19:43 +01:00
|
|
|
minifyEnabled false
|
2017-12-12 12:25:55 +01:00
|
|
|
applicationIdSuffix ".debug"
|
2018-09-19 00:43:59 +02:00
|
|
|
manifestPlaceholders = [title:"AegisDev", iconName:"ic_launcher_debug"]
|
2017-12-12 12:25:55 +01:00
|
|
|
}
|
2016-08-15 21:29:41 +02:00
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2018-09-19 00:43:59 +02:00
|
|
|
manifestPlaceholders = [title:"Aegis", iconName:"ic_launcher"]
|
2016-08-15 21:29:41 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-25 23:53:33 +02:00
|
|
|
compileOptions {
|
|
|
|
targetCompatibility 1.8
|
|
|
|
sourceCompatibility 1.8
|
|
|
|
}
|
2016-08-15 21:29:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-03-23 20:48:02 +01:00
|
|
|
def libsuVersion = '2.3.2'
|
2018-05-08 19:31:47 +02:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
|
2018-11-17 15:11:55 +01:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
2018-09-25 16:26:57 +02:00
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
2018-10-02 21:05:54 +02:00
|
|
|
implementation 'androidx.preference:preference:1.0.0'
|
|
|
|
implementation 'com.takisoft.preferencex:preferencex:1.0.0'
|
2018-09-25 16:26:57 +02:00
|
|
|
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'
|
2018-05-08 19:31:47 +02:00
|
|
|
implementation 'com.getbase:floatingactionbutton:1.10.1'
|
2018-09-12 20:04:59 +02:00
|
|
|
implementation 'com.github.apl-devs:appintro:v4.2.2'
|
|
|
|
implementation 'com.github.avito-tech:krop:3e65e12'
|
|
|
|
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'
|
2019-03-23 20:48:02 +01:00
|
|
|
implementation "com.github.topjohnwu.libsu:core:${libsuVersion}"
|
|
|
|
implementation "com.github.topjohnwu.libsu:io:${libsuVersion}"
|
2018-05-08 19:31:47 +02:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2016-08-15 21:29:41 +02:00
|
|
|
}
|