Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update targetSdk to 34 #468

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ allprojects {
version = "$project_version"
group = 'org.radarbase'

ext.versionCode = 52
ext.versionCode = 54
}

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android.defaults.buildfeatures.buildconfig=true
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

project_version=1.2.5
project_version=1.4.1-SNAPSHOT

java_version=17
kotlin_version=1.9.23
Expand Down
5 changes: 2 additions & 3 deletions gradle/android.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
android {
compileSdk 34
buildToolsVersion '34.0.0'
compileSdkVersion 34

defaultConfig {
minSdkVersion 26
targetSdkVersion 33
targetSdkVersion 34
versionCode versionCode
versionName version
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@

<application>
<service android:name=".ApplicationStatusService"
android:foregroundServiceType="dataSync"
android:exported="false"
android:description="@string/application_status_description" />
android:description="@string/application_status_description" >
</service>
</application>
</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

<application android:allowBackup="true">
<service android:name=".GoogleActivityService"
android:foregroundServiceType="dataSync"
android:exported="false"
android:description="@string/google_activity_description" />
</application>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

<application android:allowBackup="true">
<service android:name=".GooglePlacesService"
android:foregroundServiceType="location"
android:exported="false"
android:description="@string/google_places_description" />
</application>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

<application android:allowBackup="true">
<service android:name=".GoogleSleepService"
android:foregroundServiceType="dataSync"
android:exported="false"
android:description="@string/google_sleep_description" />
</application>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

<application android:allowBackup="true">
<service android:name=".PhoneLogService"
android:foregroundServiceType="dataSync"
android:exported="false"
android:description="@string/phone_log_description" />
android:description="@string/phone_log_description">
</service>
</application>
</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<application android:allowBackup="true">
<service android:name=".PhoneUsageService"
android:exported="false"
android:foregroundServiceType="dataSync"
android:description="@string/phone_usage_description" />
</application>
</manifest>
2 changes: 2 additions & 0 deletions plugins/radar-android-phone/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@

<application android:allowBackup="true">
<service android:name=".PhoneSensorService"
android:foregroundServiceType="dataSync"
android:exported="false"
android:description="@string/phone_sensors_description" />
<service android:name=".PhoneLocationService"
android:foregroundServiceType="location"
android:exported="false"
android:description="@string/phone_location_description" />
<service android:name=".PhoneContactsListService"
android:foregroundServiceType="dataSync"
android:exported="false"
android:description="@string/phone_contact_list_description" />
<service android:name=".PhoneBluetoothService"
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion plugins/radar-android-polar/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION"/>

<application android:allowBackup="true">
<service android:name=".PolarService"/>
<service android:name=".PolarService" android:foregroundServiceType="location"/>
</application>
</manifest>
Empty file.
Loading