Basic fixes
This commit is contained in:
parent
4a3323f7d0
commit
e9ff202851
@ -80,11 +80,6 @@ android {
|
||||
zipAlignEnabled true
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
release {
|
||||
minifyEnabled true
|
||||
shrinkResources true
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
|
||||
flavorDimensions "default"
|
||||
@ -243,9 +238,6 @@ dependencies {
|
||||
// Sort
|
||||
implementation 'com.github.gpanther:java-nat-sort:natural-comparator-1.1'
|
||||
|
||||
// Sort
|
||||
implementation 'com.github.gpanther:java-nat-sort:natural-comparator-1.1'
|
||||
|
||||
// UI
|
||||
implementation 'com.dmitrymalkovich.android:material-design-dimens:1.4'
|
||||
implementation 'com.github.dmytrodanylyk.android-process-button:library:1.0.4'
|
||||
|
@ -3,7 +3,6 @@ package eu.kanade.tachiyomi
|
||||
import android.app.Application
|
||||
import android.content.Context
|
||||
import android.content.res.Configuration
|
||||
<<<<<<< HEAD
|
||||
import android.graphics.Color
|
||||
import android.os.Build
|
||||
import android.os.Environment
|
||||
@ -28,7 +27,7 @@ import eu.kanade.tachiyomi.data.backup.BackupCreatorJob
|
||||
import eu.kanade.tachiyomi.data.library.LibraryUpdateJob
|
||||
import eu.kanade.tachiyomi.data.notification.Notifications
|
||||
import eu.kanade.tachiyomi.data.updater.UpdaterJob
|
||||
import eu.kanade.tachiyomi.util.LocaleHelper
|
||||
import eu.kanade.tachiyomi.util.lang.LocaleHelper
|
||||
import exh.debug.DebugToggles
|
||||
import exh.log.CrashlyticsPrinter
|
||||
import exh.log.EHDebugModeOverlay
|
||||
@ -41,8 +40,6 @@ import androidx.lifecycle.Lifecycle
|
||||
import androidx.lifecycle.LifecycleObserver
|
||||
import androidx.lifecycle.OnLifecycleEvent
|
||||
import androidx.lifecycle.ProcessLifecycleOwner
|
||||
import androidx.multidex.MultiDex
|
||||
import eu.kanade.tachiyomi.data.notification.Notifications
|
||||
import eu.kanade.tachiyomi.data.preference.PreferencesHelper
|
||||
import eu.kanade.tachiyomi.ui.security.SecureActivityDelegate
|
||||
import eu.kanade.tachiyomi.util.system.LocaleHelper
|
||||
@ -71,7 +68,7 @@ open class App : Application(), LifecycleObserver {
|
||||
|
||||
setupNotificationChannels()
|
||||
GlobalScope.launch { deleteOldMetadataRealm() } // Delete old metadata DB (EH)
|
||||
Reprint.initialize(this) //Setup fingerprint (EH)
|
||||
//Reprint.initialize(this) //Setup fingerprint (EH)
|
||||
if((BuildConfig.DEBUG || BuildConfig.BUILD_TYPE == "releaseTest") && DebugToggles.ENABLE_DEBUG_OVERLAY.enabled) {
|
||||
setupDebugOverlay()
|
||||
}
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name" translatable="false">Tachiyomi</string>
|
||||
<string name="channel_ext_updates">עדכונים לתוסף</string>
|
||||
<string name="channel_new_chapters">עדכונים לפרק</string>
|
||||
<string name="channel_library">ספרייה</string>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name" translatable="false">TachiyomiAZ</string>
|
||||
<string name="app_name" translatable="false">TachiyomiSY</string>
|
||||
|
||||
<!--Models-->
|
||||
<string name="name">Name</string>
|
||||
|
@ -10,6 +10,8 @@ allprojects {
|
||||
repositories {
|
||||
google()
|
||||
maven { setUrl("https://www.jitpack.io") }
|
||||
maven { setUrl("https://oss.sonatype.org/content/repositories/snapshots/") }
|
||||
maven { setUrl("https://dl.bintray.com/ibm-cloud-sdks/ibm-cloud-sdk-repo") }
|
||||
maven { setUrl("https://plugins.gradle.org/m2/") }
|
||||
jcenter()
|
||||
}
|
||||
@ -37,9 +39,15 @@ subprojects {
|
||||
|
||||
buildscript {
|
||||
dependencies {
|
||||
classpath("com.github.ben-manes:gradle-versions-plugin:0.28.0")
|
||||
classpath("com.github.zellius:android-shortcut-gradle-plugin:0.1.2")
|
||||
classpath("com.google.gms:google-services:4.3.3")
|
||||
classpath("com.google.android.gms:oss-licenses-plugin:0.10.2")
|
||||
// Realm (EH)
|
||||
classpath("io.realm:realm-gradle-plugin:5.13.1")
|
||||
|
||||
// Firebase (EH)
|
||||
classpath("io.fabric.tools:gradle:1.31.0")
|
||||
}
|
||||
repositories {
|
||||
google()
|
||||
|
Loading…
x
Reference in New Issue
Block a user