2017-11-04 16:09:25 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-12-21 21:08:43 +01:00
|
|
|
buildToolsVersion '27.0.2'
|
2017-12-21 20:45:52 +01:00
|
|
|
compileSdkVersion 26
|
2017-11-04 16:09:25 +01:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.nuclearfog.twidda"
|
2017-12-09 22:48:59 +01:00
|
|
|
minSdkVersion 16
|
|
|
|
targetSdkVersion 16
|
2017-11-04 16:09:25 +01:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
2017-12-16 21:05:15 +01:00
|
|
|
vectorDrawables.useSupportLibrary=true
|
2017-11-04 16:09:25 +01:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
2017-12-21 20:45:52 +01:00
|
|
|
debug {
|
|
|
|
zipAlignEnabled false
|
|
|
|
}
|
2017-11-04 16:09:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
2017-12-21 20:45:52 +01:00
|
|
|
compile 'com.android.support:appcompat-v7:26+'
|
|
|
|
compile 'com.android.support:design:26+'
|
2017-11-04 16:09:25 +01:00
|
|
|
compile files('libs/twitter4j-core-4.0.4.jar')
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|