Advertisement
Guest User

build_nightly.gradle

a guest
Jun 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.58 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. apply plugin: 'kotlin-android'
  4.  
  5. apply plugin: 'kotlin-android-extensions'
  6.  
  7. ext {
  8.     geckoview_version = "69.0.20190620094631"
  9. }
  10.  
  11. android {
  12.     compileSdkVersion 28
  13.     buildToolsVersion "29.0.0"
  14.     defaultConfig {
  15.         applicationId "com.gorrotowi.webviewsample"
  16.         minSdkVersion 21
  17.         targetSdkVersion 28
  18.         versionCode 1
  19.         versionName "1.0"
  20.         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  21.     }
  22.     buildTypes {
  23.         release {
  24.             minifyEnabled false
  25.             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  26.         }
  27.     }
  28.  
  29.     compileOptions {
  30.         sourceCompatibility JavaVersion.VERSION_1_8
  31.         targetCompatibility JavaVersion.VERSION_1_8
  32.     }
  33.  
  34. }
  35.  
  36. dependencies {
  37.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  38.     implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  39.     implementation 'androidx.appcompat:appcompat:1.0.2'
  40.     implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  41.  
  42.     implementation "org.mozilla.components:concept-engine:0.56.5"
  43.     implementation "org.mozilla.components:browser-engine-system:0.56.5"
  44.     implementation 'org.mozilla.components:browser-engine-gecko:0.56.5'
  45.  
  46.     testImplementation 'junit:junit:4.12'
  47.     androidTestImplementation 'androidx.test:runner:1.2.0'
  48.     androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  49.     implementation "org.mozilla.geckoview:geckoview-nightly:${geckoview_version}"
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement