2017-01-03 10:30:27 +11:00
|
|
|
apply plugin: 'com.android.application'
|
2017-11-17 05:18:11 +11:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2017-11-06 08:32:36 +11:00
|
|
|
apply plugin: 'kotlin-android'
|
2018-02-04 08:45:14 +11:00
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2017-01-03 10:30:27 +11:00
|
|
|
|
|
|
|
android {
|
2017-11-10 00:35:52 +11:00
|
|
|
compileSdkVersion 27
|
2018-02-03 06:49:10 +11:00
|
|
|
buildToolsVersion '27.0.3'
|
2017-01-03 10:30:27 +11:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.keylesspalace.tusky"
|
2018-02-01 07:57:50 +11:00
|
|
|
minSdkVersion 18
|
2017-11-10 00:35:52 +11:00
|
|
|
targetSdkVersion 27
|
2018-03-03 22:30:20 +11:00
|
|
|
versionCode 34
|
|
|
|
versionName "1.5.2"
|
2017-01-03 10:30:27 +11:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
2017-01-08 09:24:02 +11:00
|
|
|
vectorDrawables.useSupportLibrary true
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2017-04-08 08:08:51 +10:00
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
2017-12-08 22:15:46 +11:00
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".test"
|
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
2017-10-26 06:56:27 +11:00
|
|
|
|
2017-04-13 14:01:02 +10:00
|
|
|
lintOptions {
|
|
|
|
disable 'MissingTranslation'
|
|
|
|
}
|
2017-11-16 07:28:49 +11:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
|
2017-12-01 07:05:56 +11:00
|
|
|
ext.supportLibraryVersion = '27.0.2'
|
2017-08-04 01:01:02 +10:00
|
|
|
|
2017-01-03 10:30:27 +11:00
|
|
|
dependencies {
|
2018-02-03 06:49:10 +11:00
|
|
|
implementation('com.mikepenz:materialdrawer:6.0.4@aar') {
|
2017-03-12 18:31:20 +11:00
|
|
|
transitive = true
|
|
|
|
}
|
2018-02-04 20:31:50 +11:00
|
|
|
debugImplementation 'im.dino:dbinspector:3.4.1@aar'
|
2017-12-03 00:59:24 +11:00
|
|
|
implementation "com.android.support:appcompat-v7:$supportLibraryVersion"
|
|
|
|
implementation "com.android.support:customtabs:$supportLibraryVersion"
|
|
|
|
implementation "com.android.support:recyclerview-v7:$supportLibraryVersion"
|
|
|
|
implementation "com.android.support:support-v13:$supportLibraryVersion"
|
|
|
|
implementation "com.android.support:design:$supportLibraryVersion"
|
|
|
|
implementation "com.android.support:exifinterface:$supportLibraryVersion"
|
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
|
|
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
|
|
|
|
implementation 'com.squareup.picasso:picasso:2.5.2'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:3.9.1'
|
|
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.9.1'
|
|
|
|
implementation 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0'
|
|
|
|
implementation 'com.pkmmte.view:circularimageview:1.1'
|
|
|
|
implementation 'com.github.varunest:sparkbutton:1.0.5'
|
|
|
|
implementation 'com.github.chrisbanes:PhotoView:2.1.3'
|
|
|
|
implementation 'com.mikepenz:google-material-typeface:3.0.1.2.original@aar'
|
2018-03-02 08:18:50 +11:00
|
|
|
implementation('com.theartofdev.edmodo:android-image-cropper:2.6.0') {
|
|
|
|
exclude group: 'com.android.support'
|
|
|
|
}
|
2018-02-04 20:31:50 +11:00
|
|
|
implementation 'com.evernote:android-job:1.2.2'
|
2017-11-06 08:32:36 +11:00
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
|
2017-07-06 00:34:59 +10:00
|
|
|
//room
|
2017-12-02 22:22:52 +11:00
|
|
|
implementation 'android.arch.persistence.room:runtime:1.0.0'
|
2017-11-17 05:18:11 +11:00
|
|
|
kapt 'android.arch.persistence.room:compiler:1.0.0'
|
2017-12-03 00:59:24 +11:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2018-02-04 08:45:14 +11:00
|
|
|
|
|
|
|
debugImplementation 'im.dino:dbinspector:3.4.1@aar'
|
|
|
|
|
2017-12-03 00:59:24 +11:00
|
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
|
2017-10-19 23:39:56 +11:00
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
2017-11-17 05:18:11 +11:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
|
2017-11-06 08:32:36 +11:00
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2017-10-19 23:39:56 +11:00
|
|
|
}
|