So is it possible to recompile an apk that is decompiled using apktool to use the original certificate or signed with same certificate as it was before decompiled? Scenario : I decompile an apk with apktool and make some changes in it and recompiles using apktool but do not use apk signer instead it signed with its original certificate. Thanks.
Recompile apk using original certificate
433 Views Asked by Shiraz khan At
1
There are 1 best solutions below
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in APK
- Can not get the same signature from the keystore
- Android APK filepath layout for NDK binary executables how-to
- Signing an apk with a .dat file
- aggressive adware irremovable apk on android
- Why apk size increase in different android version
- Deploying an Android app on devices without Play Store account
- AIR Google Play Services library classes missing apk
- Android app running fine on emulator but gives error parsing package when made to run on real device
- Cordova: Trouble importing Android Downloader_Library into project
- Reduce apk size with combine java files
- Android - Bypassing install permission programmatically for enterprise apps from third-party sources
- which apk runs on the Android device ionic
- Couldn't load (find) j2v8_android_x86 library
- How would I connect to a MySQL database back-end from an Android device's application?
- Error : duplicate files during packaging of APK
Related Questions in REVERSE-ENGINEERING
- How to break code on a click event?
- How to increment versionCode using APKTool?
- Alloy traces and projection issues
- Understanding assembly of a simple C program
- Bomb lab phase 5
- I am not able to generate hibernate.reveng.xml
- Database reverse engineering tool with columnDefinition support
- Unable to see all the classes in an android application using AndBug tool
- Reverse engineer database in spring data rest
- Entity Framework 6.1 - debug t4 script execution with customized code first reverse engineering
- Differences between call, push+ret and push+jump in assembly
- Bomb lab assembly explanation
- Android bytecode: value of some variables not defined
- Reverse engineering proprietary magnetic card formats
- How many arguments are passed in a function call?
Related Questions in APKTOOL
- How to increment versionCode using APKTool?
- Apktool shows error on OS X
- Is there a way to only extract resources with apktool?
- Failed to start adb -- APK doesn't start after rebuilding with apktool
- How to bypass Signature verification in Android APK while decompiling and recompiling
- Requirements for an Android App to be decompiled?
- How prevent apktool sort global variables?
- xamarin -keystore and apk have sha1 is different
- Partially failed Android decompile contains a weird int: 65536(0x10000, float:9.18355E-41)
- how convert manifest.xml to binary for apk with programming in android
- How to decompiling Java APK file
- Why apktool is not decoding versionCode and versionName?
- Exception while decompiling apk
- java.lang.IncompatibleClassChangeError: Found interface com.android.launcher3.util.FlagOp, but class was expected
- Decompile android APK with Apktool for analysis?
Related Questions in APKSIGNER
- Signing apk works from Android Studio but why the same keystore do not work on command line?
- Android SHA256 signature algorythm with certificate having a SHA1 algorythm
- Fetching the certificate fingerprint if an apk is signed with only v2 Signing Scheme
- apksigner - Invalid keystore format
- How to print certificates of APK using apksigner
- How to reverse engineer an apk without changing its siging information
- Generate CERT.RSA for an APK without jarsigner / apksigner or any java tool
- Is it possible to add a new signature to an existing app?
- How to sign .apk with SHA256 algorithm
- Recompile apk using original certificate
- The apk rebuild by apktool can not be installed even after zipalign and sign
- Sign an apk using keytool
- "ZIP End of Central Directory record not found" error using Apksigner
- ApkSigner fails to sign APK after AGP update to 4.1.0
- Changing method of signing application on Android Studio
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Probably you can't. To sign the apk with a certain certificate, you need its password and the private info. It's no enough to get the original certificate only by a release apk.
This is the way how Android Apk protect itself from repack and identify the official organization.