Skip to content

Commit

Permalink
chore(deps):SDK-1991 -- [Android] Update Play Store Test Dependency (#…
Browse files Browse the repository at this point in the history
…1069)

Update testbed play store ads dependency
  • Loading branch information
gdeluna-branch authored Jul 5, 2023
1 parent 51cfc7c commit e579ff3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Branch-SDK-TestBed/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

dependencies {
implementation(project(":Branch-SDK"))
implementation("com.google.android.gms:play-services-ads:16.0.0")
implementation("com.google.android.gms:play-services-ads-identifier:18.0.1")

/* Add chrome custom tabs for guaranteed matching */
implementation("androidx.browser:browser:1.0.0") {
Expand Down
1 change: 1 addition & 0 deletions Branch-SDK-TestBed/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
android:versionName="1.0" >

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.google.android.gms.permission.AD_ID" />

<application
android:networkSecurityConfig="@xml/network_security_config"
Expand Down
14 changes: 7 additions & 7 deletions Branch-SDK/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies {
implementation(fileTree(mapOf("dir" to "libs", "include" to "*.jar")))
implementation(kotlin("stdlib"))
implementation(kotlin("stdlib-jdk8"))
implementation("androidx.annotation:annotation:1.4.0")
implementation("androidx.annotation:annotation:1.6.0")
implementation("com.android.installreferrer:installreferrer:2.2")

// --- optional dependencies -----
Expand All @@ -24,15 +24,15 @@ dependencies {

compileOnly("com.huawei.hms:ads-installreferrer:3.4.39.302")

androidTestImplementation("androidx.test.ext:junit:1.1.3")
androidTestImplementation("androidx.test:runner:1.4.0")
androidTestImplementation("androidx.test:rules:1.4.0")
androidTestImplementation("androidx.test.espresso:espresso-core:3.4.0")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test:runner:1.5.2")
androidTestImplementation("androidx.test:rules:1.5.0")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
// assume partner has it
androidTestImplementation("com.google.android.gms:play-services-ads-identifier:17.0.0")
androidTestImplementation("com.google.android.gms:play-services-ads-identifier:18.0.1")
androidTestImplementation("org.skyscreamer:jsonassert:1.5.0")

testImplementation("junit:junit:4.12")
testImplementation("junit:junit:4.13.2")
testImplementation("org.json:json:20201115")
testImplementation("org.skyscreamer:jsonassert:1.5.0")
}
Expand Down
1 change: 1 addition & 0 deletions Branch-SDK/src/androidTest/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
<uses-permission android:name="com.google.android.gms.permission.AD_ID" />

<application>
<activity android:name=".mock.MockActivity" />
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ POM_DEVELOPER_ID=branch
POM_DEVELOPER_NAME=Branch Metrics

ANDROID_BUILD_TARGET_SDK_MINIMUM=21
ANDROID_BUILD_TARGET_SDK_VERSION=32
ANDROID_BUILD_TARGET_SDK_VERSION=33
ANDROID_BUILD_TOOLS_VERSION=30.0.2
ANDROID_BUILD_SDK_VERSION=32
ANDROID_BUILD_SDK_VERSION=33
android.useAndroidX=true
android.enableJetifier=true

0 comments on commit e579ff3

Please sign in to comment.