forked from iBotPeaches/Apktool
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request iBotPeaches#1173 from iBotPeaches/major/remove-sma…
…lidebugging Removes SmaliDebugging
- Loading branch information
Showing
26 changed files
with
39 additions
and
1,261 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
env: | ||
- TERM=dumb | ||
language: java | ||
git: | ||
submodules: false | ||
jdk: | ||
- openjdk7 | ||
- oraclejdk7 | ||
|
@@ -21,9 +19,7 @@ before_install: | |
- git config --global user.name "Travis CI Bot" | ||
- sudo apt-get update -qq | ||
- sudo apt-get install -qq libstdc++6:i386 lib32z1 expect | ||
- sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules | ||
- git submodule update --init --recursive | ||
install: ./gradlew applyPatches | ||
script: ./gradlew build fatJar proguard | ||
branches: | ||
only: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 0 additions & 34 deletions
34
brut.apktool/apktool-lib/src/main/java/brut/androlib/java/AndrolibJava.java
This file was deleted.
Oops, something went wrong.
29 changes: 0 additions & 29 deletions
29
brut.apktool/apktool-lib/src/main/java/brut/androlib/mod/IndentingWriter.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,35 +40,6 @@ | |
* @author Connor Tumbleson <[email protected]> | ||
*/ | ||
public final class ResXmlPatcher { | ||
|
||
/** | ||
* Removes "debug" tag from file | ||
* | ||
* @param file AndroidManifest file | ||
* @throws AndrolibException | ||
*/ | ||
public static void removeApplicationDebugTag(File file) throws AndrolibException { | ||
if (file.exists()) { | ||
try { | ||
Document doc = loadDocument(file); | ||
Node application = doc.getElementById("application"); | ||
|
||
// load attr | ||
NamedNodeMap attr = application.getAttributes(); | ||
Node debugAttr = attr.getNamedItem("debug"); | ||
|
||
// remove application:debug | ||
if (debugAttr != null) { | ||
attr.removeNamedItem("debug"); | ||
} | ||
|
||
saveDocument(file, doc); | ||
|
||
} catch (SAXException | ParserConfigurationException | IOException | TransformerException ignored) { | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* Any @string reference in a <provider> value in AndroidManifest.xml will break on | ||
* build, thus preventing the application from installing. This is from a bug/error | ||
|
Oops, something went wrong.