File tree Expand file tree Collapse file tree 9 files changed +1
-25
lines changed
java/org/kiwix/kiwixmobile/core Expand file tree Collapse file tree 9 files changed +1
-25
lines changed Original file line number Diff line number Diff line change 66
66
KEY_ALIAS : ${{ secrets.KEY_ALIAS }}
67
67
KEY_PASSWORD : ${{ secrets.KEY_PASSWORD }}
68
68
KEY_STORE_PASSWORD : ${{ secrets.KEY_STORE_PASSWORD }}
69
- run : ./gradlew publishPlayStoreBundle
69
+ run : ./gradlew publishPlayStoreBundle --scan
Original file line number Diff line number Diff line change @@ -420,10 +420,4 @@ object Libs {
420
420
* https://developer.android.com/testing
421
421
*/
422
422
const val junit: String = " androidx.test.ext:junit:" + Versions .junit
423
-
424
- /* *
425
- * https://developer.android.com/reference/com/google/android/play/core/release-notes
426
- */
427
- const val google_android_play_core: String =
428
- " com.google.android.play:core:" + Versions .google_android_play_core
429
423
}
Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ import org.gradle.plugin.use.PluginDependencySpec
12
12
*/
13
13
object Versions {
14
14
15
- const val google_android_play_core: String = " 1.7.3"
16
-
17
15
const val document_file_version: String = " 1.0.1"
18
16
19
17
const val org_jetbrains_kotlinx_kotlinx_coroutines: String = " 1.4.1"
Original file line number Diff line number Diff line change @@ -204,7 +204,6 @@ class AllProjectConfigurer {
204
204
implementation(Libs .rxandroid)
205
205
implementation(Libs .rxjava)
206
206
implementation(Libs .preference_ktx)
207
- implementation(Libs .google_android_play_core)
208
207
}
209
208
}
210
209
}
Original file line number Diff line number Diff line change 17
17
*/
18
18
package org.kiwix.kiwixmobile.core
19
19
20
- import android.app.AlertDialog
21
20
import android.app.Application
22
21
import android.content.Context
23
22
import android.os.Build
@@ -26,7 +25,6 @@ import android.os.Environment.getExternalStorageState
26
25
import android.os.StrictMode
27
26
import android.os.StrictMode.VmPolicy
28
27
import androidx.multidex.MultiDex
29
- import com.google.android.play.core.missingsplits.MissingSplitsManagerFactory
30
28
import com.jakewharton.threetenabp.AndroidThreeTen
31
29
import org.kiwix.kiwixmobile.core.data.local.KiwixDatabase
32
30
import org.kiwix.kiwixmobile.core.di.components.CoreComponent
@@ -78,15 +76,6 @@ abstract class CoreApp : Application() {
78
76
}
79
77
80
78
override fun onCreate () {
81
- if (MissingSplitsManagerFactory .create(this ).disableAppIfMissingRequiredSplits()) {
82
- AlertDialog .Builder (this )
83
- .setMessage(R .string.missing_split_version_for_objectbox)
84
- .setPositiveButton(R .string.yes) { _, _ ->
85
- android.os.Process .killProcess(android.os.Process .myPid())
86
- }
87
- .show()
88
- return
89
- }
90
79
super .onCreate()
91
80
instance = this
92
81
coreComponent = DaggerCoreComponent .builder()
Original file line number Diff line number Diff line change 315
315
<string name =" open_article" >Ouvrir l’article</string >
316
316
<string name =" delete_note_dialog_message" >Remarque : les notes ne sont pas supprimées de votre espace de stockage</string >
317
317
<string name =" delete_selected_notes" >Supprimer les notes sélectionnées ?</string >
318
- <string name =" missing_split_version_for_objectbox" >Architecture non prise en charge, votre appareil n’est pas compatible avec cette application.</string >
319
318
</resources >
Original file line number Diff line number Diff line change 299
299
<string name =" open_article" >Отвори статија</string >
300
300
<string name =" delete_note_dialog_message" >Напомена: Белешките не се избришани од вашиот склад</string >
301
301
<string name =" delete_selected_notes" >Да ги избришам избраните белешки?</string >
302
- <string name =" missing_split_version_for_objectbox" >Неподдржана архитектура. Вашито уред не е складен со прилогов</string >
303
302
</resources >
Original file line number Diff line number Diff line change 302
302
<string name =" open_article" >Otvoriť článok</string >
303
303
<string name =" delete_note_dialog_message" >Poznámka: Poznámky z vášho úložiska nie sú vymazané</string >
304
304
<string name =" delete_selected_notes" >Odstrániť vybraté poznámky?</string >
305
- <string name =" missing_split_version_for_objectbox" >Nepodporovaná architektúra, vaše zariadenie nie je kompatibilné s touto aplikáciou</string >
306
305
</resources >
Original file line number Diff line number Diff line change 323
323
<string name =" open_article" >Open Article</string >
324
324
<string name =" delete_note_dialog_message" >Note: Notes are not deleted from your storage</string >
325
325
<string name =" delete_selected_notes" >Delete Selected Notes?</string >
326
- <string name =" missing_split_version_for_objectbox" >Un-Supported architecture, your device isn\'t compatible with this app</string >
327
326
</resources >
You can’t perform that action at this time.
0 commit comments