Skip to content

Commit

Permalink
feat: update usages of compile to implementation/api in gradle depend…
Browse files Browse the repository at this point in the history
…encies

The compile function and its associates have been deprecated in
gradle. Their usages should be updated to api or implementation
or their associates.

Examples:
compile -> implementation
testCompile -> testImplementation

References https://outsystemsrd.atlassian.net/browse/RNMT-2655
  • Loading branch information
usernuno committed Mar 19, 2019
1 parent 4aebf93 commit c864d3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OneSignalSDK/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ dependencies {
implementation 'com.google.android.gms:play-services-location:12.0.0'

// For Chrome tabs
compile 'com.android.support:customtabs:27.1.0'
api 'com.android.support:customtabs:27.1.0'
}

//apply plugin: 'com.google.gms.google-services'

0 comments on commit c864d3c

Please sign in to comment.