blob: a47a9a2b075eb2412d8b5917d3b3d416f654fa1b [file] [log] [blame]
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.helloworld"
minSdkVersion 19
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
// This is already included in protobuf-lite that Tink depends on.
exclude group: 'com.google.code.findbugs'
})
implementation 'com.android.support:appcompat-v7:26.+'
implementation 'com.android.support:design:26.+'
testImplementation 'junit:junit:4.12'
// Tink HEAD-SNAPSHOT for Android.
implementation 'com.google.crypto.tink:tink-android:HEAD-SNAPSHOT'
}