Skip to content

Commit

Permalink
Merge pull request #546 from afischerdev/app-params-update
Browse files Browse the repository at this point in the history
Add an app params dialog
  • Loading branch information
afischerdev committed May 8, 2023
2 parents 7b04e0b + 3976750 commit 0c32770
Show file tree
Hide file tree
Showing 12 changed files with 798 additions and 98 deletions.
7 changes: 4 additions & 3 deletions brouter-routing-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
namespace 'btools.routingapp'
applicationId "btools.routingapp"

versionCode 47
versionCode 48
versionName project.version

resValue('string', 'app_version', defaultConfig.versionName)
Expand Down Expand Up @@ -89,19 +89,20 @@ android {
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
implementation 'androidx.work:work-runtime:2.8.0'
implementation 'androidx.work:work-runtime:2.8.1'
implementation 'com.google.android.material:material:1.8.0'

implementation project(':brouter-mapaccess')
implementation project(':brouter-core')
implementation project(':brouter-expressions')
implementation project(':brouter-util')
implementation 'androidx.preference:preference:1.2.0'

testImplementation 'junit:junit:4.13.2'

androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation 'androidx.work:work-testing:2.8.0'
androidTestImplementation 'androidx.work:work-testing:2.8.1'
}

gradle.projectsEvaluated {
Expand Down
6 changes: 6 additions & 0 deletions brouter-routing-app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
android:label="@string/app_name"
android:preserveLegacyExternalStorage="true"
android:hasFragileUserData="true"
android:enableOnBackInvokedCallback="true"
android:largeHeap="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:theme="@style/Theme.App">
Expand Down Expand Up @@ -87,6 +88,11 @@
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.brf" />
</intent-filter>
</activity>
<activity
android:name=".RoutingParameterDialog"
android:exported="true"
android:launchMode="singleTask"
/>

<service
android:name=".BRouterService"
Expand Down
Loading

0 comments on commit 0c32770

Please sign in to comment.