Skip to content

Commit

Permalink
Release 0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
weiqiangliu committed Jul 3, 2023
1 parent 6244a78 commit e827d30
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.sensorsdata.analytics.android:SensorsAnalyticsSDK:6.6.6'
implementation files("libs/SensorsFocusSDK-0.6.3.aar")
implementation 'com.sensorsdata.analytics.android:SensorsAnalyticsSDK:6.7.0'
implementation files("libs/SensorsFocusSDK-0.6.4.aar")
}
Binary file removed app/libs/SensorsFocusSDK-0.6.3.aar
Binary file not shown.
Binary file added app/libs/SensorsFocusSDK-0.6.4.aar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ public void onCampaignEnd(SFCampaign sfCampaign) {
Log.d(TAG, "onCampaignEnd" + sfCampaign.toString());
}

@Override
public void onCampaignClick(SFCampaign sfCampaign) {

}

@Override
public void onCampaignFailed(SFCampaign sfCampaign, int errorCode, String errorMessage) {
Log.d(TAG, "SA.campaignFailed : errorCode:" + errorCode
Expand Down
20 changes: 16 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@ buildscript {
repositories {
mavenCentral()
google()
jcenter()

maven { url 'https://maven.google.com/'}
maven { url "https://maven.aliyun.com/repository/jcenter"}
maven { url 'https://maven.aliyun.com/repository/google'}
maven {
url 'https://maven.aliyun.com/repository/public'
}


}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.4'
Expand All @@ -22,8 +28,14 @@ allprojects {
repositories {
mavenCentral()
google()
jcenter()

maven { url 'https://maven.google.com/'}
maven { url "https://maven.aliyun.com/repository/jcenter"}
maven { url 'https://maven.aliyun.com/repository/google'}
maven {
url 'https://maven.aliyun.com/repository/public'
}


}
}

Expand Down

0 comments on commit e827d30

Please sign in to comment.