2019-02-26 09:53:45 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
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
|
|
|
|
versionName "1.0"
|
2019-03-07 13:45:11 +00:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
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-02-26 09:53:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-02-26 10:49:24 +00:00
|
|
|
def room_version = "2.1.0-alpha04"
|
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
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-02-26 10:49:24 +00:00
|
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:$room_version"
|
2019-03-05 11:26:45 +00:00
|
|
|
implementation 'net.tomp2p:tomp2p-all:5.0-Beta8'
|
2019-02-26 09:53:45 +00:00
|
|
|
}
|