Skip to content

Instantly share code, notes, and snippets.

@takahirohonda
Created September 14, 2019 02:25
Show Gist options
  • Save takahirohonda/f9f7290b4beee8adadaa6bc96afc0de0 to your computer and use it in GitHub Desktop.
Save takahirohonda/f9f7290b4beee8adadaa6bc96afc0de0 to your computer and use it in GitHub Desktop.
my-twa-config-module-build.gradle
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
compileSdkVersion 29
buildToolsVersion "29.0.1"
defaultConfig {
applicationId "com.mdhsitecorequiz.sitecorecertificationexamquiz"
minSdkVersion 16
targetSdkVersion 29
versionCode 5
versionName "1.5"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.github.GoogleChrome.custom-tabs-client:customtabs:7ab7178ae0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment