Skip to content

Commit

Permalink
Revert target sdk to 33 and update countly to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
aanorbel committed Oct 11, 2023
1 parent 44ea55b commit 0e3d714
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ apply plugin: 'com.android.application'
apply from: 'jacoco.gradle'

android {
compileSdk 34
compileSdk 33
ndkVersion '22.0.7026061'

defaultConfig {
applicationId 'org.openobservatory.ooniprobe'
minSdk 21
targetSdk 34
targetSdk 33
versionName '3.8.3'
versionCode 102
testInstrumentationRunner "org.openobservatory.ooniprobe.TestAndroidJUnitRunner"
Expand Down Expand Up @@ -54,7 +54,7 @@ android {
}
}

flavorDimensions 'testing', 'license'
flavorDimensions = ['testing', 'license']
productFlavors {
stable {
dimension 'testing'
Expand Down Expand Up @@ -140,7 +140,7 @@ dependencies {
// Flavor
fullImplementation platform('com.google.firebase:firebase-bom:26.3.0')
fullImplementation 'com.google.firebase:firebase-messaging'
fullImplementation 'ly.count.android:sdk:21.11.0'
fullImplementation 'ly.count.android:sdk:23.6.0'
fullImplementation 'io.sentry:sentry-android:6.3.0'
fullImplementation 'com.google.android.play:core:1.10.3'

Expand Down
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

0 comments on commit 0e3d714

Please sign in to comment.