Skip to content

Commit

Permalink
fix deprecation warnings in example
Browse files Browse the repository at this point in the history
  • Loading branch information
lukef committed Jan 24, 2019
1 parent daf1742 commit d3b3470
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ android {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
implementation fileTree(dir: 'libs', include: ['*.jar'])
// kotlin
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
// google
compile "com.android.support:appcompat-v7:${versions.googleSupport}"
compile "com.android.support:support-v13:${versions.googleSupport}"
compile "com.android.support:support-v4:${versions.googleSupport}"
implementation "com.android.support:appcompat-v7:${versions.googleSupport}"
implementation "com.android.support:support-v13:${versions.googleSupport}"
implementation "com.android.support:support-v4:${versions.googleSupport}"
// testing
androidTestCompile "com.android.support:support-annotations:${versions.googleSupport}"
androidTestCompile 'com.android.support.test:runner:1.0.1'
androidTestCompile 'com.android.support.test:rules:1.0.1'
androidTestImplementation "com.android.support:support-annotations:${versions.googleSupport}"
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test:rules:1.0.1'
}

0 comments on commit d3b3470

Please sign in to comment.