/* * Copyright 2019 ChronosX88 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ apply plugin: 'com.android.application' apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-android' android { compileSdkVersion 28 defaultConfig { applicationId "io.github.chronosx88.influence" minSdkVersion 19 targetSdkVersion 28 versionCode 1 versionName "0.1alpha1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" multiDexEnabled true javaCompileOptions { annotationProcessorOptions { arguments = ["room.schemaLocation": "$projectDir/schemas".toString()] } } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } packagingOptions { exclude 'META-INF/INDEX.LIST' exclude 'META-INF/io.netty.versions.properties' exclude 'LICENSE-EPL-1.0.txt' exclude 'LICENSE-EDL-1.0.txt' exclude 'META-INF/atomicfu.kotlin_module' } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'androidx.appcompat:appcompat:1.1.0-alpha02' implementation "com.android.support:support-compat:28.0.0" implementation "androidx.room:room-runtime:2.1.0-alpha04" implementation 'androidx.constraintlayout:constraintlayout:1.1.3' annotationProcessor "androidx.room:room-compiler:2.1.0-alpha04" implementation 'org.slf4j:slf4j-log4j12:1.7.26' implementation 'com.google.android.material:material:1.1.0-alpha04' implementation 'androidx.preference:preference:1.1.0-alpha03' implementation 'com.google.code.gson:gson:2.8.5' implementation 'de.hdodenhof:circleimageview:3.0.0' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation 'com.android.support:multidex:1.0.3' implementation "org.jetbrains.anko:anko:0.10.8" implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.0' implementation 'com.esotericsoftware:kryo:5.0.0-RC1' implementation 'com.github.instacart.truetime-android:library:3.4' implementation 'org.igniterealtime.smack:smack-core:4.3.3' implementation 'org.igniterealtime.smack:smack-tcp:4.3.3' implementation 'org.igniterealtime.smack:smack-android:4.3.3' implementation 'org.igniterealtime.smack:smack-extensions:4.3.3' implementation 'com.github.stfalcon:chatkit:0.3.3' implementation 'net.sourceforge.streamsupport:streamsupport:1.7.0' implementation 'org.greenrobot:eventbus:3.1.1' implementation 'net.sourceforge.streamsupport:android-retrofuture:1.7.0' implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1' implementation 'org.igniterealtime.smack:smack-experimental:4.3.3' implementation 'com.github.bumptech.glide:glide:4.9.0' annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0' implementation "de.adorsys.android:securestoragelibrary:1.0.3" } repositories { mavenCentral() }