Skip to content

Commit

Permalink
reverted to jdk 30
Browse files Browse the repository at this point in the history
  • Loading branch information
michelegirolami committed May 12, 2023
1 parent 1497a76 commit b2186c1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 31
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
applicationId 'it.cnr.isti.steplogger'
minSdkVersion 24
targetSdkVersion 31
targetSdkVersion 24
versionCode 1
versionName '1.0'
}
Expand Down
7 changes: 3 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:requestLegacyExternalStorage="true"

>
<activity
android:name="it.cnr.isti.steplogger.StepLoggerActivity"
android:label="@string/app_name"
android:exported="true">
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand All @@ -29,7 +28,7 @@
<activity
android:name="it.cnr.isti.steplogger.SettingsActivity"
android:label="@string/pref_title"
android:exported="false">
>
</activity>

<service
Expand All @@ -39,7 +38,7 @@
android:process=":remote">

<intent-filter>
<action android:name=".IStepLoggerService.aidl" />
<action android:name=".IStepLoggerService.aidl"/>
</intent-filter>
</service>
</application>
Expand Down

0 comments on commit b2186c1

Please sign in to comment.