Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.12 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. apply plugin: 'kotlin-kapt'
  8. apply plugin: 'realm-android'
  9.  
  10. android {
  11.     compileSdkVersion 29
  12.     buildToolsVersion "29.0.2"
  13.     defaultConfig {
  14.         applicationId "ru.alexeyFedechkin.android.myfinandroid"
  15.         minSdkVersion 21
  16.         targetSdkVersion 29
  17.         versionCode 1
  18.         versionName "1.0"
  19.         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  20.     }
  21.     buildTypes {
  22.         release {
  23.             minifyEnabled false
  24.             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  25.         }
  26.     }
  27. }
  28.  
  29. buildscript {
  30.     ext.parcelerVersion = '1.1.11'
  31. }
  32.  
  33. dependencies {
  34.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  35.     implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  36.     implementation 'androidx.appcompat:appcompat:1.1.0'
  37.     implementation 'androidx.core:core-ktx:1.1.0'
  38.     implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  39.     implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  40.     testImplementation 'junit:junit:4.12'
  41.     androidTestImplementation 'androidx.test:runner:1.2.0'
  42.     androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  43.     implementation 'io.realm:realm-gradle-plugin:5.15.1'
  44.     implementation "org.parceler:parceler-api:$parcelerVersion"
  45.     implementation "org.jetbrains.anko:anko-commons:0.10.4"
  46.     implementation 'androidx.recyclerview:recyclerview:1.0.0'
  47.     implementation 'com.google.android.material:material:1.0.0'
  48.     implementation 'com.google.android.material:material:1.0.0'
  49.     implementation 'androidx.appcompat:appcompat:1.1.0'
  50.     implementation 'androidx.recyclerview:recyclerview:1.0.0'
  51.     implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  52.     implementation 'androidx.cardview:cardview:1.0.0'
  53.     implementation 'com.google.android.material:material:1.1.0-alpha10'
  54.  
  55. }
  56.  
  57.  
  58. kapt {
  59.     generateStubs = true
  60.     arguments {
  61.         arg("realm.ignoreKotlinNullability", true)
  62.     }
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement