Skip to content

Commit

Permalink
Revert target sdk to 33 and update countly to latest version (#621)
Browse files Browse the repository at this point in the history
Fixes `java.lang.SecurityException: org.openobservatory.ooniprobe: One
of RECEIVER_EXPORTED or RECEIVER_NOT_EXPORTED should be specified when a
receiver isn't being registered exclusively for system broadcasts`
Countly/countly-sdk-android#191

## Proposed Changes

- Downgrade `compileSdk` and `targetSdk` to versions
`ly.count.android:sdk:+` can support
  • Loading branch information
aanorbel authored Oct 18, 2023
1 parent f952115 commit bccb236
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />

<permission
android:name="${applicationId}.permission.C2D_MESSAGE"
Expand Down Expand Up @@ -175,7 +175,7 @@
<service
android:name=".common.service.RunTestService"
android:icon="@drawable/notification_icon"
android:foregroundServiceType="specialUse"
android:foregroundServiceType="dataSync"
android:label="@string/Dashboard_Card_Run"/>
<service
android:name=".common.service.RunTestJobService"
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
androidGradlePlugin = "7.4.1"
barista = "3.9.0"
countlySdk = "21.11.0"
countlySdk = "23.6.0"
faker = "1.2.8"
mockitoCore = "5.3.1"
mockitoInline = "4.6.1"
Expand All @@ -11,7 +11,7 @@ sentryAndroid = "6.3.0"
xanscaleLocalhostToolkit = "19.05.01"
commonsIo = "2.6"
jacoco = "0.8.5"
kotlin = "1.6.21"
kotlin = "1.8.0"

# Android X
androidxCore = "1.5.0"
Expand All @@ -38,7 +38,7 @@ compileSdk = "34"
lottie = "3.0.7"
markwon = "2.0.1"
shapeofview = "1.3.2"
targetSdk = "34"
targetSdk = "33"
minSdk = "21"
oonimkall = "2023.07.18-162729"

Expand Down

0 comments on commit bccb236

Please sign in to comment.