Skip to content

Commit

Permalink
Update libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
nonelse committed May 3, 2016
1 parent f3690a0 commit c3c8c61
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Adjust/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.android.tools.build:gradle:2.1.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
2 changes: 1 addition & 1 deletion Adjust/example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.google.android.gms:play-services-analytics:8.4.0'
// imported module
compile project(":adjust")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,8 @@ public void onFinishedSessionTrackingFailed(AdjustSessionFailure sessionFailureR
config.setOnDeeplinkResponseListener(new OnDeeplinkResponseListener() {
@Override
public boolean launchReceivedDeeplink(Uri deeplink) {
if (deeplink.getPath().equals("")) {
return false;
} else {
return true;
}
Log.d("example", "deeplink to open: " + deeplink);
return true;
}
});

Expand Down

0 comments on commit c3c8c61

Please sign in to comment.