Version Auchan!

This commit is contained in:
Jimmie Matsson 2019-07-11 12:51:05 +02:00
parent af6f9401cb
commit c6b5cd23ca
5 changed files with 23 additions and 13 deletions

View file

@ -1,4 +1,4 @@
#Wed Jun 20 09:05:23 CEST 2018
#Mon Mar 11 13:18:19 CET 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

View file

@ -6,15 +6,6 @@
# hide the original source file name.
#-renamesourcefileattribute SourceFile
#-assumenosideeffects class android.util.Log {
# public static boolean isLoggable(java.lang.String, int);
# public static int v(...);
# public static int i(...);
# public static int w(...);
# public static int d(...);
# public static int e(...);
#}
-keep class com.nuance.android.vocalizer.** { *; }
-keepclassmembers public class com.voixtreme.vxtenginejni.VxtEngineApi {
@ -29,6 +20,11 @@
!static !transient <fields>;
}
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keepclassmembers class ** {
@org.greenrobot.eventbus.Subscribe <methods>;
}

View file

@ -15,6 +15,14 @@
public static int e(...);
}
-assumenosideeffects class com.dixitmobile.common.LoggerService {
public static void v(...);
public static void i(...);
public static void w(...);
public static void d(...);
public static void e(...);
}
-keep class com.nuance.android.vocalizer.** { *; }
-keepclassmembers public class com.voixtreme.vxtenginejni.VxtEngineApi {
@ -29,6 +37,11 @@
!static !transient <fields>;
}
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keepclassmembers class ** {
@org.greenrobot.eventbus.Subscribe <methods>;
}

View file

@ -21,8 +21,6 @@ import java.io.File;
//=============================================================================
// This activity does nothing, and holds the service
public class MainActivity extends AppCompatActivity {
private static final String TAG = "MainActivity";
private VerifyPermissions mVerifyPermissions;
//=========================================================================

View file

@ -1105,6 +1105,7 @@ public class VoiXtremeService extends VoiXtremeServiceBase
case BroadcastParams.COMMAND_FINALIZE:
Lg.i(TAG, "update COMMAND_FINALIZE #1" );
System.exit(0);
FailSave t = new FailSave();
t.start();
@ -1173,7 +1174,7 @@ public class VoiXtremeService extends VoiXtremeServiceBase
Lg.i(TAG, "eml: FailSafe started...");
try {
Thread.sleep(10000);
Thread.sleep(1000);
} catch (InterruptedException e) {
Lg.i(TAG, "eml: FailSafe interrupted...");
return;
@ -1345,6 +1346,8 @@ public class VoiXtremeService extends VoiXtremeServiceBase
*/
public void sendConfiguredStatus() {
Lg.i(TAG, "eml: sendConfiguredStatus(): " + mVxtPkgManager.intentPackage + ": " + mIsConfigured);
if (mVxtPkgManager.intentPackage != null) {
Intent intentOut = new Intent( mVxtPkgManager.intentPackage);
intentOut.setFlags(Intent.FLAG_RECEIVER_FOREGROUND);