-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
570 additions
and
269 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule gn_mobile_core
updated
113 files
Submodule gn_mobile_maps
updated
53 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Thu Apr 18 21:20:10 CEST 2019 | ||
#Wed Aug 21 20:56:36 CEST 2019 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
occtax/src/main/java/fr/geonature/occtax/input/InputViewModel.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package fr.geonature.occtax.input | ||
|
||
import android.app.Application | ||
import fr.geonature.occtax.input.io.OnInputJsonReaderListenerImpl | ||
import fr.geonature.occtax.input.io.OnInputJsonWriterListenerImpl | ||
import fr.geonature.commons.input.InputViewModel as BaseInputModel | ||
|
||
/** | ||
* [Input] view model. | ||
* | ||
* @author [S. Grimault](mailto:sebastien.grimault@gmail.com) | ||
*/ | ||
class InputViewModel(application: Application) : BaseInputModel<Input>(application, | ||
OnInputJsonReaderListenerImpl(), | ||
OnInputJsonWriterListenerImpl()) |
13 changes: 13 additions & 0 deletions
13
occtax/src/main/java/fr/geonature/occtax/settings/AppSettingsViewModel.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package fr.geonature.occtax.settings | ||
|
||
import android.app.Application | ||
import fr.geonature.occtax.settings.io.OnAppSettingsJsonReaderListenerImpl | ||
import fr.geonature.commons.settings.AppSettingsViewModel as BaseAppSettingsViewModel | ||
|
||
/** | ||
* [AppSettings] view model. | ||
* | ||
* @author [S. Grimault](mailto:sebastien.grimault@gmail.com) | ||
*/ | ||
class AppSettingsViewModel(application: Application) : BaseAppSettingsViewModel<AppSettings>(application, | ||
OnAppSettingsJsonReaderListenerImpl()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.