Skip to content

Commit

Permalink
Merge pull request #501 from adjust/v4284
Browse files Browse the repository at this point in the history
Version 4.28.4
  • Loading branch information
shashanksu authored Aug 9, 2021
2 parents 5bf71eb + 2b5157c commit b45e397
Show file tree
Hide file tree
Showing 33 changed files with 245 additions and 100 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 = 30
coreTargetSdkVersion = 30
coreVersionName = '4.28.3'
coreVersionName = '4.28.4'
defaultVersionCode = 1
webbridgeMinSdkVersion = 17

Expand Down
12 changes: 10 additions & 2 deletions Adjust/example-app-tv/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,20 @@
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

<uses-feature android:name="android.software.leanback"
android:required="false" />
<uses-feature android:name="android.hardware.touchscreen"
android:required="false" />


<application
android:name=".GlobalApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat">
android:theme="@style/Theme.AppCompat"
android:banner="@mipmap/ic_launcher">

<receiver
android:name="com.adjust.sdk.AdjustReferrerReceiver"
Expand All @@ -28,6 +35,7 @@
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
Expand All @@ -38,7 +46,7 @@
note that the leading "/" is required for pathPrefix
Accepts URIs that begin with "example://”
-->
<data android:scheme="adjustExample" />
<data android:scheme="adjust-example" />
</intent-filter>
</activity>
</application>
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.28.3";
String VERSION = "!SDK-VERSION-STRING!:com.adjust.sdk:adjust-android:4.28.4";

if (defaultInstance == null) {
defaultInstance = new AdjustInstance();
Expand Down
Loading

0 comments on commit b45e397

Please sign in to comment.