You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
898 B

apply plugin: 'com.android.application'
android {
compileSdkVersion "Google Inc.:Glass Development Kit Preview:19"
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "haus.nightmare.GlassTesla"
minSdkVersion 19
targetSdkVersion 29
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'org.jetbrains:annotations-java5:15.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.4'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'org.conscrypt:conscrypt-android:2.2.1'
implementation 'com.squareup.okhttp3:okhttp:3.12.13'
}