Skip to content

Commit

Permalink
add to launcher and upgrade version
Browse files Browse the repository at this point in the history
  • Loading branch information
Helium314 committed Jan 22, 2025
1 parent 8220db0 commit d834076
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Removed
- Not applicable

## [1.2.14] - 2025-01-22
### Changed
- Added settings to launcher to allow data export without microG support
- Upgrade dependencies

## [1.2.13] - 2024-12-22
### Changed
- Fix wrong check breaking imports
Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "helium314.localbackend"
minSdkVersion 18
targetSdkVersion 34
versionCode 41
versionName "1.2.13"
versionCode 42
versionName "1.2.14"
}

buildTypes {
Expand Down Expand Up @@ -47,5 +47,5 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1' // can't upgrade to 1.7.0 because this requires minSdkVersion 21
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.1.0'
implementation 'org.microg.nlp:api:2.0-alpha10'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1'
}
5 changes: 4 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@
android:name="org.fitchfamily.android.dejavu.SettingsActivity"
android:launchMode="singleTask"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity
Expand All @@ -48,7 +52,6 @@
<data android:scheme="geo" />
</intent-filter>
</activity>

<service
android:name="org.fitchfamily.android.dejavu.GpsMonitor"
android:permission="android.permission.ACCESS_FINE_LOCATION">
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
google()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.21"
classpath 'com.android.tools.build:gradle:8.7.2'
}
}
Expand Down

0 comments on commit d834076

Please sign in to comment.