2019-02-26 09:53:45 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2019-04-07 10:04:50 +00:00
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
apply plugin: 'kotlin-android'
|
2019-02-26 09:53:45 +00:00
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
2019-02-26 10:10:08 +00:00
|
|
|
applicationId "io.github.chronosx88.influence"
|
2019-02-26 09:53:45 +00:00
|
|
|
minSdkVersion 19
|
|
|
|
targetSdkVersion 28
|
|
|
|
versionCode 1
|
2019-04-10 16:12:43 +00:00
|
|
|
versionName "0.1alpha3"
|
2019-03-07 13:45:11 +00:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2019-04-10 16:05:15 +00:00
|
|
|
multiDexEnabled true
|
2019-03-22 16:08:29 +00:00
|
|
|
javaCompileOptions {
|
|
|
|
annotationProcessorOptions {
|
|
|
|
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
|
|
|
|
}
|
|
|
|
}
|
2019-02-26 09:53:45 +00:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2019-03-07 13:45:11 +00:00
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/INDEX.LIST'
|
|
|
|
exclude 'META-INF/io.netty.versions.properties'
|
2019-03-11 17:05:28 +00:00
|
|
|
exclude 'LICENSE-EPL-1.0.txt'
|
|
|
|
exclude 'LICENSE-EDL-1.0.txt'
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
2019-03-07 13:45:11 +00:00
|
|
|
}
|
2019-02-26 09:53:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-02-26 10:49:24 +00:00
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
2019-04-10 13:50:51 +00:00
|
|
|
//implementation fileTree(include: ['*.jar'], dir: 'libs/tomp2p')
|
2019-03-07 13:45:11 +00:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0-alpha02'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3'
|
2019-03-26 17:28:27 +00:00
|
|
|
implementation "androidx.room:room-runtime:2.1.0-alpha04"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:2.1.0-alpha04"
|
|
|
|
implementation 'org.slf4j:slf4j-log4j12:1.7.26'
|
2019-03-11 17:05:28 +00:00
|
|
|
implementation group: 'com.h2database', name: 'h2-mvstore', version: '1.4.197'
|
2019-04-10 13:50:51 +00:00
|
|
|
implementation 'net.tomp2p:tomp2p-all:5.0-Beta8'
|
2019-03-13 16:28:05 +00:00
|
|
|
implementation 'com.google.android.material:material:1.1.0-alpha04'
|
|
|
|
implementation 'androidx.preference:preference:1.1.0-alpha03'
|
2019-03-19 11:04:06 +00:00
|
|
|
implementation 'com.google.code.gson:gson:2.8.5'
|
2019-03-22 16:08:29 +00:00
|
|
|
implementation group: 'org.springframework.security', name: 'spring-security-crypto', version: '3.1.0.RELEASE'
|
2019-03-26 17:28:27 +00:00
|
|
|
implementation 'de.hdodenhof:circleimageview:3.0.0'
|
2019-04-06 03:16:04 +00:00
|
|
|
implementation group: 'org.objenesis', name: 'objenesis', version: '2.6'
|
2019-04-07 10:04:50 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
2019-04-10 16:05:15 +00:00
|
|
|
implementation 'com.android.support:multidex:1.0.3'
|
2019-04-07 10:04:50 +00:00
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2019-02-26 09:53:45 +00:00
|
|
|
}
|