File tree Expand file tree Collapse file tree 7 files changed +17
-193
lines changed
src/main/java/com/monitoryourexpenses/expenses/usercurrency Expand file tree Collapse file tree 7 files changed +17
-193
lines changed Original file line number Diff line number Diff line change 11name : Release (Beta Version)
22
33on :
4- pull_request :
5- branches : [ beta ]
4+ push :
5+ paths :
6+ - ' app/**'
7+ branches :
8+ - beta
69
710jobs :
811 deploy :
2225 key : ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
2326 restore-keys : |
2427 ${{ runner.os }}-gems-
25-
2628 - name : Cache Gradle
2729 uses : actions/cache@v1
2830 with :
4244 run : |
4345 bundle config path vendor/bundle
4446 bundle install --jobs 4 --retry 3
45-
4647 - name : Configure Keystore
4748 run : |
4849 echo "$ANDROID_KEYSTORE_FILE" > keystore.jks.b64
5253 echo "storePassword=$KEYSTORE_STORE_PASSWORD" >> keystore.properties
5354 echo "keyPassword=$KEYSTORE_KEY_PASSWORD" >> keystore.properties
5455 env :
55- BUILD_KEY_STORE : ${{ secrets.BUILD_KEY_STORE }}
56- ANDROID_KEY_STORE_ALIAS : ${{ secrets.ANDROID_KEY_STORE_ALIAS }}
56+ ANDROID_KEYSTORE_FILE : ${{ secrets.ANDROID_KEYSTORE_FILE }}
57+ KEYSTORE_KEY_ALIAS : ${{ secrets.KEYSTORE_KEY_ALIAS }}
5758 KEYSTORE_KEY_PASSWORD : ${{ secrets.KEYSTORE_KEY_PASSWORD }}
5859 KEYSTORE_STORE_PASSWORD : ${{ secrets.KEYSTORE_STORE_PASSWORD }}
5960
6566 PLAY_CONFIG_JSON : ${{ secrets.PLAY_CONFIG_JSON }}
6667
6768 - name : Distribute app to Beta track 🚀
68- run : bundle exec fastlane beta
69+ run : bundle exec fastlane beta
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ android {
2929 }
3030 buildTypes {
3131 release {
32- minifyEnabled false
32+ minifyEnabled true
3333 shrinkResources false
3434 proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
3535 }
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ class GetUserCurrencyFragment : Fragment() {
2323
2424 private lateinit var getUserCurrencyFragmentBinding : GetUserCurrencyFragmentBinding
2525 private val getUserCurrencyUserViewModel: GetUserCurrencyUserViewModel by viewModels()
26+
2627 @Inject
2728 lateinit var expenseMonitorSharedPreferences: ExpenseMonitorSharedPreferences
2829
@@ -45,6 +46,7 @@ class GetUserCurrencyFragment : Fragment() {
4546 getUserCurrencyFragmentBinding.nextButton.setOnClickListener {
4647 getUserCurrencyUserViewModel.saveUserCurrency()
4748 }
49+
4850 return getUserCurrencyFragmentBinding.root
4951 }
5052
Original file line number Diff line number Diff line change @@ -91,4 +91,5 @@ class GetUserCurrencyUserViewModel @ViewModelInject
9191 localRepository.insertNewCategory(listOfCategories)
9292 }
9393 }
94+
9495}
Original file line number Diff line number Diff line change @@ -49,8 +49,8 @@ buildscript {
4949 classpath " com.android.tools.build:gradle:${ buildGradle} "
5050 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
5151 classpath " androidx.navigation:navigation-safe-args-gradle-plugin:$gradlePlugin "
52- classpath(" org.jlleitschuh.gradle:ktlint-gradle:9.2.1 " )
53- classpath ' com.google.dagger:hilt-android-gradle-plugin:2.28.3 -alpha'
52+ classpath(" org.jlleitschuh.gradle:ktlint-gradle:9.3.0 " )
53+ classpath ' com.google.dagger:hilt-android-gradle-plugin:2.29.1 -alpha'
5454 }
5555}
5656
Original file line number Diff line number Diff line change 1- json_key_file("/home/etegani/Downloads/play_config.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
2- package_name("com.monitoryourexpenses.expenses") # e.g. com.krausefx.app
1+ json_key_file("play_config.json")
2+
3+ package_name("com.monitoryourexpenses.expenses")
You can’t perform that action at this time.
0 commit comments