Questions tagged [dexguard]

Commercial Android app obfuscator, by same developer as the better known ProGuard.

Commercial Android app obfuscator, by same developer as the better known .

http://www.guardsquare.com/dexguard

175 questions
0
votes
3 answers

FCM 15.0.2 cannot make token in release build with Dexguard

I'm Using FCM with Dexguard. FCM cannot make token in release build. but, it works well in debug build. my gradle settings classpath 'com.google.gms:google-services:3.2.1' compile 'com.google.android.gms:play-services-base:15.0.2' compile…
0
votes
1 answer

Dexguard with Multidex

I have a problem while integrating Dexguard in the projects that needs to enable Multidex, I get no compile errors but when launching the app it crashes with this error java.lang.RuntimeException: Unable to instantiate application xx.xxx.xxx.XXXApp:…
Jameido
  • 1,344
  • 1
  • 11
  • 21
0
votes
1 answer

dexguard maven ERROR INVALID SDK

I was actually compiling an android project using maven. When I use plugin Dexguard ,it shows this error : Failed to execute goal com.guardsquare.dexguard.maven:dexguard-maven-plugin:8.1.00:generate-sources (default-generate-sources) on project…
A92
  • 61
  • 8
0
votes
2 answers

Does dexguard provide encryption of any URLs used in the code

I want to encrypt my android application so that it is hard to be decompiled or reverse engineered. For this I have come across dexguard. I checked from its fact-sheet that it offer multiple level of encryption and obfuscation. So I want to know…
0
votes
1 answer

DexGuard java.io.IOException: The same input jar

I'm facing this issue when using dexguard > Task :app:dexguardStaging FAILED The TaskInternal.execute() method has been deprecated and is scheduled to be removed in Gradle 5.0. There are better ways to re-use task logic, see…
raditya gumay
  • 2,951
  • 3
  • 17
  • 24
0
votes
1 answer

Method Reference to private constructor throws IllegalAccessError

Edit: Thanks for the commenters trying to repro! It's starting to look like this is an issue with Dexguard specifically. this may be related to DexGuard integration in Android Studio 3.0. So I'm running into an odd error when trying to pass a…
0
votes
1 answer

Dexguard lib environment check in mobile failing for MI, Appo, Yureka devices

I have implemented dexguard in my project. When I run an environment check, some devices work fine and pass the check. However in MI, Appo, Yureka devices, the check is returning it that the device is rooted. I am not able to understand why those…
user3069590
  • 129
  • 1
  • 2
  • 11
0
votes
1 answer

Buck/OkBuck: DexGuard integration not working

I have been using DexGuard successfully with Gradle in Android Studio without any issues. I recently tried my hands on OkBuck to speed up my build time and it really helped me. Although it is able to build debug and signed APKs for me, but when I…
Kamran Ahmed
  • 7,661
  • 4
  • 30
  • 55
0
votes
1 answer

dexguard obfuscation class reference not found

on dexguard obfuscation the referenced classes not find error is thrown during dexguard release build. can't find referenced class com.sun.jna.ptr.IntByReference please suggest the solution.
Ashok Kumar
  • 1,226
  • 1
  • 10
  • 14
0
votes
1 answer

License file not present in my final APK if i am using proguard

I added my license file into MYExampleApp->src folder. If i generate the APK without using proguard my license file is present in Meta-Inf folder. but if i am using proguard the license file is not present in Meta-Inf folder. I want include my…
User6006
  • 597
  • 4
  • 21
0
votes
1 answer

Dexguard: avoid Class name and Logger obfuscation

How to avoid Class name and Logger obfuscation(Dexguard) Dexguard: avoid Class name and Logger obfuscation from Android Release build Apk Suggest me any one...
kgsharathkumar
  • 1,369
  • 1
  • 19
  • 36
0
votes
1 answer

DexGuard/Proguard obfuscate annotation values

I use Dagger2. I have next code: @Provides @Named("Server API") String getApiUrl(){} And consuming code: public class Client { @Inject Client(@Named("Server API") url){} } Will Dexguard/Proguard obfuscate strings values in annotation?
Eugen Martynov
  • 19,888
  • 10
  • 61
  • 114
0
votes
1 answer

Keep logging while obfuscating with Dexguard

I am trying to make Dexguard not stripping out logging functions when it is shrinking and obfuscating my code. I have therefore commented the following instruction in Dexguard configuration file: -assumenosideeffects class android.util.Log…
Antelop
  • 157
  • 11
0
votes
1 answer

Proguard app Execution ERROR

When I'm not using proguard, it is working perfectly fine. But, when I try to use dexguard or proguard, it's not working. But I can make apk file. Surprise thing is I try options and it doesn't optimize my files, same Error happened. Error is : …
BJ Kang
  • 1
  • 4
0
votes
1 answer

Dexguard in a library project

I am upgrading from Dexguard 6 to 7 and have a question regarding library obfuscation. With Dexguard 6, I could obfuscate my library that is a Module inside Android Studio and then use this module in my app with it as a local dependency:…
Elias
  • 472
  • 3
  • 17