Skip to content
This repository has been archived by the owner on Jul 23, 2020. It is now read-only.

Commit

Permalink
fix arraymap problem on old android ClassNotFound and v1.109.
Browse files Browse the repository at this point in the history
  • Loading branch information
raulhaag committed Aug 21, 2019
1 parent f14326a commit 6a3c825
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ Downloads

Changelog
---------
Cambios en v1.109:
* Agregado filtros de 3 estados a los servers que lo soportan.
* Varios fixs y un par de mejoras.

Changes in v1.109:
* Added 3 state filters on server that support it.
* Various fixes and a couple of improves.

Cambios en v1.108:
* Fix Fanfox, MangaHere, Mangashiro.
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ android {
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "ar.rulosoft.mimanganu"
versionCode 108
versionName "1.108"
versionCode 109
versionName "1.109"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
minSdkVersion 15
}
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/java/ar/rulosoft/navegadores/CFInterceptor.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package ar.rulosoft.navegadores;

import android.util.ArrayMap;
import android.util.Base64;
import android.util.Log;

Expand All @@ -10,6 +9,7 @@
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
Expand Down Expand Up @@ -132,8 +132,8 @@ interface Atob {

public static class Jsonfxxx {
private static Jsonfxxx instance;
Map<String, String> mapping = new ArrayMap<>();
Map<String, String> simple = new ArrayMap<>();
Map<String, String> mapping = new HashMap<>();
Map<String, String> simple = new HashMap<>();

private Jsonfxxx() {
mapping.put("a", "(false+\"\")[1]");
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values-es/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="update_message">Cambios en v1.108:\n\t* Fix Fanfox, MangaHere, Mangashiro.\n\t* Fix decodificador L90.\n\t* Actualizada traduccion al frances y aleman.\n\t* Ahora si hay una bobeda abierta y agregas un manga este queda en ella.\n\t* Min fixes en el backend.</string>
<string name="update_message">Cambios en v1.109:\n\t* Agregado filtros de 3 estados a los servers que lo soportan.\n\t* Varios fixs y un par de mejoras.</string>
<string name="action_ajustar_a">Ajustar a</string>
<string name="descargas">Descargas</string>
<string name="datosde">Datos de </string>
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="update_message">Changes in v1.108:\n\t* Fix Fanfox, MangaHere, Mangashiro.\n\t* Fix L90 decoder.\n\t* Updated french and german translation.\n\t* Now if you have a open vault all new manga go there.\n\t* Min fixes in backend.</string>
<string name="update_message">Changes in v1.109:\n\t* Added 3 state filters on server that support it.\n\t* Various fixes and a couple of improves.</string>
<string name="_12hours">12 Hours</string>
<string name="_1day">1 day</string>
<string name="_2day">2 days</string>
Expand Down

0 comments on commit 6a3c825

Please sign in to comment.