Skip to content

Commit

Permalink
build: update version number to 4.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shashanksu committed Apr 11, 2022
1 parent b5d4d4a commit 70787fe
Show file tree
Hide file tree
Showing 22 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion Adjust/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ext {
coreMinSdkVersion = 9
coreCompileSdkVersion = 31
coreTargetSdkVersion = 31
coreVersionName = '4.29.1'
coreVersionName = '4.30.0'
defaultVersionCode = 1
webbridgeMinSdkVersion = 17

Expand Down
2 changes: 1 addition & 1 deletion Adjust/sdk-core/src/main/java/com/adjust/sdk/Adjust.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ private Adjust() {
*/
public static synchronized AdjustInstance getDefaultInstance() {
@SuppressWarnings("unused")
String VERSION = "!SDK-VERSION-STRING!:com.adjust.sdk:adjust-android:4.29.1";
String VERSION = "!SDK-VERSION-STRING!:com.adjust.sdk:adjust-android:4.30.0";

if (defaultInstance == null) {
defaultInstance = new AdjustInstance();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public interface Constants {

String SCHEME = "https";
String AUTHORITY = "app.adjust.com";
String CLIENT_SDK = "android4.29.1";
String CLIENT_SDK = "android4.30.0";
String LOGTAG = "Adjust";
String REFTAG = "reftag";
String INSTALL_REFERRER = "install_referrer";
Expand Down
2 changes: 1 addition & 1 deletion Adjust/sdk-plugin-criteo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
// Add SDK via module.
compileOnly project(':sdk-core')
// Add SDK via Maven.
// implementation 'com.adjust.sdk:adjust-android:4.29.1'
// implementation 'com.adjust.sdk:adjust-android:4.30.0'
}

task adjustCriteoAndroidAar (type: Copy) {
Expand Down
2 changes: 1 addition & 1 deletion Adjust/sdk-plugin-imei/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
// Add SDK via module.
compileOnly project(':sdk-core')
// Add SDK via Maven.
// implementation 'com.adjust.sdk:adjust-android:4.29.1'
// implementation 'com.adjust.sdk:adjust-android:4.30.0'
}

task adjustImeiAndroidAar (type: Copy) {
Expand Down
2 changes: 1 addition & 1 deletion Adjust/sdk-plugin-oaid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
// Add SDK via module.
compileOnly project(':sdk-core')
// Add SDK via Maven.
// implementation 'com.adjust.sdk:adjust-android:4.29.1'
// implementation 'com.adjust.sdk:adjust-android:4.30.0'
}

task adjustOaidAndroidAar (type: Copy) {
Expand Down
2 changes: 1 addition & 1 deletion Adjust/sdk-plugin-sociomantic/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
// Add SDK via module.
compileOnly project(':sdk-core')
// Add SDK via Maven.
// implementation 'com.adjust.sdk:adjust-android:4.29.1'
// implementation 'com.adjust.sdk:adjust-android:4.30.0'
}

task adjustSociomanticAndroidAar (type: Copy) {
Expand Down
2 changes: 1 addition & 1 deletion Adjust/sdk-plugin-trademob/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
// Add SDK via module.
compileOnly project(':sdk-core')
// Add SDK via Maven.
// implementation 'com.adjust.sdk:adjust-android:4.29.1'
// implementation 'com.adjust.sdk:adjust-android:4.30.0'
}

task adjustTrademobAndroidAar (type: Copy) {
Expand Down
2 changes: 1 addition & 1 deletion Adjust/sdk-plugin-webbridge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
// Add SDK via module.
compileOnly project(':sdk-core')
// Add SDK via Maven.
// implementation 'com.adjust.sdk:adjust-android:4.29.1'
// implementation 'com.adjust.sdk:adjust-android:4.30.0'
}

task adjustWebBridgeAndroidAar (type: Copy) {
Expand Down
2 changes: 1 addition & 1 deletion Adjust/sdk-plugin-webbridge/src/main/assets/adjust.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ var Adjust = {
if (this.adjustConfig) {
return this.adjustConfig.getSdkPrefix();
} else {
return 'web-bridge4.29.1';
return 'web-bridge4.30.0';
}
},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public TestActivityPackage(ActivityPackage activityPackage) {
// default values
appToken = "123456789012";
environment = "sandbox";
clientSdk = "android4.29.1";
clientSdk = "android4.30.0";
suffix = "";
attribution = new AdjustAttribution();
playServices = true;
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,14 @@ These are the minimum required steps to integrate the Adjust SDK in your Android
If you are using Maven, add the following to your `build.gradle` file:

```gradle
implementation 'com.adjust.sdk:adjust-android:4.29.1'
implementation 'com.adjust.sdk:adjust-android:4.30.0'
implementation 'com.android.installreferrer:installreferrer:2.2'
```

If you would prefer to use the Adjust SDK inside web views in your app, please include this additional dependency as well:

```gradle
implementation 'com.adjust.sdk:adjust-android-webbridge:4.29.1'
implementation 'com.adjust.sdk:adjust-android-webbridge:4.30.0'
```

**Note**: The minimum supported Android API level for the web view extension is 17 (Jelly Bean).
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.29.1
4.30.0
4 changes: 2 additions & 2 deletions doc/chinese/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,14 @@
如果您使用的是 Maven,请添加下行到您的 `build.gradle` 文件:

```gradle
implementation 'com.adjust.sdk:adjust-android:4.29.1'
implementation 'com.adjust.sdk:adjust-android:4.30.0'
implementation 'com.android.installreferrer:installreferrer:2.2'
```

如果您想在应用 web view 中使用 Adjust SDK,请也添加下列附加依赖项:

```gradle
implementation 'com.adjust.sdk:adjust-android-webbridge:4.29.1'
implementation 'com.adjust.sdk:adjust-android-webbridge:4.30.0'
```

**请注意:** web view 扩展支持的最低安卓 API 级别为 17 (Jelly Bean)。
Expand Down
4 changes: 2 additions & 2 deletions doc/chinese/plugins/oaid.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ OAID 是由移动安全联盟 (MSA) 推出的广告 ID。所有中国国内的
如果您使用的是 Maven,请将以下 OAID 插件依赖项添加到现有 Adjust SDK 依赖项旁的 `build.gradle` 文件:

```
implementation 'com.adjust.sdk:adjust-android:4.29.1'
implementation 'com.adjust.sdk:adjust-android-oaid:4.29.1'
implementation 'com.adjust.sdk:adjust-android:4.30.0'
implementation 'com.adjust.sdk:adjust-android-oaid:4.30.0'
```

您还可以将 Adjust OAID 插件作为 JAR 文件进行添加,该文件可从我们的 [版本页面][releases] 下载。
Expand Down
2 changes: 1 addition & 1 deletion doc/english/migration/migrate.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Migrate your Adjust SDK for Android to 4.29.1 from 3.6.2
## Migrate your Adjust SDK for Android to 4.30.0 from 3.6.2

### The Application class

Expand Down
4 changes: 2 additions & 2 deletions doc/english/plugins/oaid.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ To enable the Adjust SDK to collect and track OAID, follow these steps. To only
If you are using Maven, add the following OAID plugin dependency to your `build.gradle` file next to the existing Adjust SDK dependency:

```
implementation 'com.adjust.sdk:adjust-android:4.29.1'
implementation 'com.adjust.sdk:adjust-android-oaid:4.29.1'
implementation 'com.adjust.sdk:adjust-android:4.30.0'
implementation 'com.adjust.sdk:adjust-android-oaid:4.30.0'
```

You can also add the Adjust OAID plugin as JAR file, which you can download from our [releases page][releases].
Expand Down
4 changes: 2 additions & 2 deletions doc/japanese/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,14 @@ Adjust SDKをAndroidプロジェクトに実装する手順を説明します。
Mavenを使用している場合は、以下の内容を`build.gradle`ファイルに追加します。file:

```gradle
implementation 'com.adjust.sdk:adjust-android:4.29.1'
implementation 'com.adjust.sdk:adjust-android:4.30.0'
implementation 'com.android.installreferrer:installreferrer:2.2'
```

アプリの WebView内でAdjust SDKを使用したい場合は、以下のdependencyを追加してください。

```gradle
implementation 'com.adjust.sdk:adjust-android-webbridge:4.29.1'
implementation 'com.adjust.sdk:adjust-android-webbridge:4.30.0'
```

**注意**:WebView拡張機能用にサポートされている最小のAndroid APIレベルは17(Jelly Bean)です。
Expand Down
2 changes: 1 addition & 1 deletion doc/japanese/migration/migrate.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Android用adjust SDKのv3.6.2からv4.29.1への移行
## Android用adjust SDKのv3.6.2からv4.30.0への移行

### アプリケーションクラス

Expand Down
4 changes: 2 additions & 2 deletions doc/japanese/plugins/oaid.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Adjust SDKがOAID値を収集し計測するための設定手順は、以下の
Mavenを使用している場合は、以下のOAIDプラグイン dependencyを、既存のAdjust SDKのdependencyの隣にあるbuild.gradle` file に追加します:

```
implementation 'com.adjust.sdk:adjust-android:4.29.1'
implementation 'com.adjust.sdk:adjust-android-oaid:4.29.1'
implementation 'com.adjust.sdk:adjust-android:4.30.0'
implementation 'com.adjust.sdk:adjust-android-oaid:4.30.0'
```

Adjust OAIDプラグインを JARファイルとして追加することもできます。JARファイルは、[releases page][releases] からダウンロードすることができます。
Expand Down
4 changes: 2 additions & 2 deletions doc/korean/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,14 @@ Adjust™의 Android SDK에 관한 문서입니다. Adjust™에 대한 자세
Maven을 사용하는 경우, 다음을 `build.gradle` 파일에 추가하시기 바랍니다.

```gradle
implementation 'com.adjust.sdk:adjust-android:4.29.1'
implementation 'com.adjust.sdk:adjust-android:4.30.0'
implementation 'com.android.installreferrer:installreferrer:2.2'
```

앱의 웹뷰 안에서 Adjust SDK를 사용하고자 하는 경우, 다음의 추가적인 dependency를 추가하시기 바랍니다.

```gradle
implementation 'com.adjust.sdk:adjust-android-webbridge:4.29.1'
implementation 'com.adjust.sdk:adjust-android-webbridge:4.30.0'
```

**참고**: 웹뷰 확장에 필요한 Android API의 최소 지원 레벨은 17(Jelley Bean)입니다.
Expand Down
4 changes: 2 additions & 2 deletions doc/korean/plugins/oaid.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Adjust SDK가 OAID를 수집하고 트래킹할 수 있게 하기 위해서는
Maven을 사용하고 있는 경우, 기존 Adjust SDK dependency 옆에 있는 `build.gradle` 파일에 다음의 OAID plugin dependency을 추가하세요.

```
implementation 'com.adjust.sdk:adjust-android:4.29.1'
implementation 'com.adjust.sdk:adjust-android-oaid:4.29.1'
implementation 'com.adjust.sdk:adjust-android:4.30.0'
implementation 'com.adjust.sdk:adjust-android-oaid:4.30.0'
```

Adjust OAID 플러그인을 JAR 파일로 추가할 수도 있습니다. Adjust [릴리스 페이지][releases]에서 다운로드하세요.
Expand Down

0 comments on commit 70787fe

Please sign in to comment.