mirror of
https://github.com/whyorean/AuroraStore.git
synced 2026-06-19 04:58:47 -04:00
3.2.6
This commit is contained in:
@@ -28,8 +28,8 @@ android {
|
||||
applicationId "com.aurora.store"
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 29
|
||||
versionCode 25
|
||||
versionName "3.2.5"
|
||||
versionCode 26
|
||||
versionName "3.2.6"
|
||||
|
||||
resConfigs "ar-rSA", "b+ast", "bh-rIN", "bg-rBG", "ca-rES", "de-rDE", "es-rES", "el-rGR", "fr-rFR", "gl-rES", "hi-rIN", "hr-rHR", "hu-rHU", "in-rID", "it-rIT", "iw-rIL", "ja-rJP", "ko-rKR", "lt-rLT",
|
||||
"pl-rPL", "pt-rPT", "pt-rBR", "ro-rRO", "ru-rRU", "sc-rIT", "sk-rSK", "sr-rSR", "sv-rSE", "th-rTH", "tr-rTR", "uk-rUA", "vi-rVN", "zh-rCN", "zh-rTW", "nl-rNL", "be-rBY", "nb-rNO", "pa-rIN",
|
||||
@@ -79,7 +79,8 @@ buildscript {
|
||||
fastAdapter: "5.0.0",
|
||||
okhttp3 : "4.3.1",
|
||||
glide : "4.11.0",
|
||||
workmanager : "2.3.4"
|
||||
workmanager: "2.3.4",
|
||||
navigation : "2.2.2"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -99,8 +100,8 @@ dependencies {
|
||||
|
||||
//JetPack Components
|
||||
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
|
||||
implementation "androidx.navigation:navigation-fragment:2.2.1"
|
||||
implementation "androidx.navigation:navigation-ui:2.2.1"
|
||||
implementation "androidx.navigation:navigation-fragment:${versions.navigation}"
|
||||
implementation "androidx.navigation:navigation-ui:${versions.navigation}"
|
||||
implementation "androidx.work:work-runtime:${versions.workmanager}"
|
||||
implementation "androidx.work:work-rxjava2:${versions.workmanager}"
|
||||
|
||||
@@ -120,8 +121,8 @@ dependencies {
|
||||
implementation "com.google.code.gson:gson:2.8.6"
|
||||
|
||||
//Lombok
|
||||
compileOnly "org.projectlombok:lombok:1.18.10"
|
||||
annotationProcessor "org.projectlombok:lombok:1.18.10"
|
||||
compileOnly "org.projectlombok:lombok:1.18.12"
|
||||
annotationProcessor "org.projectlombok:lombok:1.18.12"
|
||||
|
||||
//PlayStoreApi
|
||||
implementation "com.github.whyorean:playstore-api-v2:2.5"
|
||||
|
||||
@@ -140,8 +140,8 @@ public class AuroraApplication extends Application {
|
||||
public void onCreate() {
|
||||
super.onCreate();
|
||||
|
||||
//Clear preferences for app version below 3.2.5
|
||||
if (BuildConfig.VERSION_CODE < 24) {
|
||||
//Clear preferences for app version below 3.2.6
|
||||
if (BuildConfig.VERSION_CODE < 26) {
|
||||
SharedPreferences preferences = Util.getPrefs(this);
|
||||
preferences.edit().clear().apply();
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
package com.aurora.store;
|
||||
|
||||
public class Constants {
|
||||
public static final String SHARED_PREFERENCES_KEY = "com.aurora.store";
|
||||
public static final String SHARED_PREFERENCES_KEY = "com.aurora.store.26";
|
||||
public static final String SERVICE_PACKAGE = "com.aurora.services";
|
||||
public static final String APP_DETAIL_URL = "https://play.google.com/store/apps/details?id=";
|
||||
public static final String APP_ICON_URL = "https://gitlab.com/AuroraOSS/AuroraStore/raw/master/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png";
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package com.aurora.store.report;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.content.SharedPreferences;
|
||||
import android.net.Uri;
|
||||
import android.os.Bundle;
|
||||
import android.view.MenuItem;
|
||||
@@ -13,6 +14,7 @@ import androidx.appcompat.widget.Toolbar;
|
||||
import com.aurora.store.BuildConfig;
|
||||
import com.aurora.store.R;
|
||||
import com.aurora.store.ui.single.activity.BaseActivity;
|
||||
import com.aurora.store.util.Util;
|
||||
import com.google.android.material.dialog.MaterialAlertDialogBuilder;
|
||||
import com.google.gson.Gson;
|
||||
import com.google.gson.GsonBuilder;
|
||||
@@ -118,6 +120,8 @@ public class AcraErrorActivity extends BaseActivity {
|
||||
|
||||
@OnClick(R.id.btn_negative)
|
||||
public void setBtnNegative() {
|
||||
finishAfterTransition();
|
||||
SharedPreferences preferences = Util.getPrefs(this);
|
||||
preferences.edit().clear().apply();
|
||||
Util.restartApp(this);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -67,8 +67,6 @@ public class ApiBuilderUtil {
|
||||
GooglePlayAPI api = builder.build();
|
||||
loginInfo.setEmail(builder.getEmail());
|
||||
|
||||
Log.e(loginInfo.toString());
|
||||
|
||||
if (api != null) {
|
||||
loginInfo.setGsfId(api.getGsfId());
|
||||
loginInfo.setAuthToken(api.getToken());
|
||||
|
||||
@@ -50,6 +50,13 @@
|
||||
android:layout_marginTop="@dimen/margin_xxsmall"
|
||||
android:text="@string/crash_line2"
|
||||
android:textAppearance="@style/TextAppearance.Aurora.Line2" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/margin_xxsmall"
|
||||
android:text="@string/crash_line3"
|
||||
android:textAppearance="@style/TextAppearance.Aurora.Line2" />
|
||||
</LinearLayout>
|
||||
|
||||
<ScrollView
|
||||
@@ -96,7 +103,7 @@
|
||||
style="@style/Widget.MaterialComponents.Button.TextButton"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="@dimen/height_button"
|
||||
android:text="@string/action_close"
|
||||
android:text="@string/action_clear_restart"
|
||||
app:layout_constraintEnd_toStartOf="@id/btn_positive"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="parent"
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
<string name="action_cancel">"Cancel"</string>
|
||||
<string name="action_clear">"Clear"</string>
|
||||
<string name="action_clear_all">"Clear all"</string>
|
||||
<string name="action_clear_restart">"Clear data"</string>
|
||||
<string name="action_copied">"Link copied to clipboard"</string>
|
||||
<string name="action_copy">"Copy Link"</string>
|
||||
<string name="action_disable">"Disable"</string>
|
||||
@@ -343,6 +344,7 @@
|
||||
<string name="crash_title">"Aurora Crash Report"</string>
|
||||
<string name="crash_line1">"Well that's embarrassing !"</string>
|
||||
<string name="crash_line2">"You can send this report to Aurora Dev, to help resolve the issue."</string>
|
||||
<string name="crash_line3">"Optionally, you may try clearing app data and retry launching the app."</string>
|
||||
<string name="action_ignore">"Ignore this version"</string>
|
||||
<string name="action_ignore_remove">"Remove from ignore list"</string>
|
||||
<string name="action_disabled">"Disabled"</string>
|
||||
|
||||
@@ -20,6 +20,9 @@
|
||||
|
||||
<resources>
|
||||
<string name="app_log" translatable="false">
|
||||
\n
|
||||
\n Changelog : v3.2.6
|
||||
\n • Bug Fixes and Improvements
|
||||
\n
|
||||
\n Changelog : v3.2.5
|
||||
\n • Fixed auto install issues for bulk updates
|
||||
|
||||
Reference in New Issue
Block a user