Skip to content

Commit

Permalink
Merge pull request #609 from adjust/v500
Browse files Browse the repository at this point in the history
Version 5.0.0
  • Loading branch information
uerceg authored Aug 2, 2024
2 parents 753e4e6 + 1fea310 commit 2fa1a0a
Show file tree
Hide file tree
Showing 439 changed files with 5,378 additions and 13,568 deletions.
8 changes: 4 additions & 4 deletions Adjust/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ subprojects {

ext {
// Android config.
coreMinSdkVersion = 9
coreMinSdkVersion = 21
coreCompileSdkVersion = 34
coreTargetSdkVersion = 34
coreVersionName = '4.38.5'
coreVersionName = '5.0.0'
defaultVersionCode = 1
webbridgeMinSdkVersion = 17
samsungReferrerMinSdkVersion = 18
webbridgeMinSdkVersion = 21
samsungReferrerMinSdkVersion = 21
vivoReferrerMinSdkVersion = 23
samsungCloudDevMinSdkVersion = 23

Expand Down

This file was deleted.

File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ android {

defaultConfig {
applicationId "com.adjust.examples"
minSdkVersion 17
minSdkVersion 21
targetSdkVersion 34
versionCode 1
versionName "1.0"
Expand Down Expand Up @@ -34,5 +34,5 @@ dependencies {
implementation 'com.google.android.gms:play-services-appset:16.0.2'

implementation project(':sdk-core')
implementation project(':sdk-plugin-webbridge')
implementation project(':plugins:sdk-plugin-webbridge')
}
Original file line number Diff line number Diff line change
Expand Up @@ -87,25 +87,25 @@ <h1 style="width:400px;height:35px;text-align:center;">Adjust Facebook Pixel Dem
var btnEnableOfflineMode = document.getElementById('btnEnableOfflineMode')
btnEnableOfflineMode.onclick = function(e) {
e.preventDefault();
Adjust.setOfflineMode(true);
Adjust.switchToOfflineMode();
}

var btnDisableOfflineMode = document.getElementById('btnDisableOfflineMode')
btnDisableOfflineMode.onclick = function(e) {
e.preventDefault();
Adjust.setOfflineMode(false);
Adjust.switchBackToOnlineMode();
}

var btnEnableSdk = document.getElementById('btnEnableSdk')
btnEnableSdk.onclick = function(e) {
e.preventDefault()
Adjust.setEnabled(true)
Adjust.enable()
}

var btnDisableSdk = document.getElementById('btnDisableSdk')
btnDisableSdk.onclick = function(e) {
e.preventDefault();
Adjust.setEnabled(false);
Adjust.disable();
}

var btnIsSdkEnabled = document.getElementById('btnIsSdkEnabled')
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
tools:remove="android:appComponentFactory"
tools:targetApi="p" >

<receiver
android:name="com.adjust.sdk.AdjustReferrerReceiver"
Expand Down
Loading

0 comments on commit 2fa1a0a

Please sign in to comment.