Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
J
jadx
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
jadx
Commits
7669fa15
Commit
7669fa15
authored
Apr 29, 2014
by
Skylot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update dependencies, add coveralls badge
parent
e49ba619
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
48 additions
and
14 deletions
+48
-14
.travis.yml
.travis.yml
+9
-1
README.md
README.md
+6
-5
build.gradle
build.gradle
+23
-5
gradle-wrapper.jar
gradle/wrapper/gradle-wrapper.jar
+0
-0
gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
+1
-1
build.gradle
jadx-cli/build.gradle
+2
-2
build.gradle
jadx-gui/build.gradle
+7
-0
No files found.
.travis.yml
View file @
7669fa15
...
...
@@ -3,10 +3,18 @@ jdk:
-
oraclejdk7
-
openjdk7
-
openjdk6
env
:
-
TERM=dumb
before_install
:
-
chmod +x gradlew
script
:
-
TERM=dumb ./gradlew clean build dist
-
./gradlew clean build dist
after_success
:
-
./gradlew jacocoTestReport coveralls
notifications
:
email
:
-
skylot@gmail.com
README.md
View file @
7669fa15
## JADX
[
![Build Status
](
https://travis-ci.org/skylot/jadx.png?branch=master
)
](https://travis-ci.org/skylot/jadx)
[
![Build Status
](
https://drone.io/github.com/skylot/jadx/status.png
)
](https://drone.io/github.com/skylot/jadx/latest)
[
![Coverage Status
](
https://coveralls.io/repos/skylot/jadx/badge.png
)
](https://coveralls.io/r/skylot/jadx)
**jadx**
- Dex to Java decompiler
Command line and GUI tools for produce Java source code from Android Dex and Apk files
Note: jadx-gui now in experimental stage
### Downloads
-
[
unstable
](
https://drone.io/github.com/skylot/jadx/files
)
[
![Build Status
](
https://drone.io/github.com/skylot/jadx/status.png
)
](https://drone.io/github.com/skylot/jadx/latest)
[
![Build Status
](
https://travis-ci.org/skylot/jadx.png?branch=master
)
](https://travis-ci.org/skylot/jadx)
-
from
[
github
](
https://github.com/skylot/jadx/releases
)
-
from
[
sourceforge
](
http://sourceforge.net/projects/jadx/files/
)
...
...
@@ -51,4 +52,4 @@ Example:
*Licensed under the Apache 2.0 License*
*Copyright 201
3
by Skylot*
*Copyright 201
4
by Skylot*
build.gradle
View file @
7669fa15
...
...
@@ -6,8 +6,7 @@ apply plugin: 'sonar-runner'
subprojects
{
apply
plugin:
'java'
apply
plugin:
'jacoco'
apply
plugin:
'idea'
apply
plugin:
'eclipse'
apply
plugin:
'coveralls'
sourceCompatibility
=
1.6
targetCompatibility
=
1.6
...
...
@@ -30,15 +29,34 @@ subprojects {
}
dependencies
{
compile
'org.slf4j:slf4j-api:1.7.
6
'
compile
'org.slf4j:slf4j-api:1.7.
7
'
testCompile
'junit:junit:4.11'
testCompile
'org.mockito:mockito-core:1.9.5'
testCompile
'ch.qos.logback:logback-classic:1.1.
1
'
testCompile
'ch.qos.logback:logback-classic:1.1.
2
'
}
repositories
{
mavenCentral
()
}
jacocoTestReport
{
reports
{
xml
.
enabled
=
true
// coveralls plugin depends on xml format report
html
.
enabled
=
true
}
}
}
// setup coveralls (http://coveralls.io/)
// see http://github.com/kt3k/coveralls-gradle-plugin
buildscript
{
repositories
{
mavenCentral
()
}
dependencies
{
classpath
'org.kt3k.gradle.plugin:coveralls-gradle-plugin:0.4.0'
}
}
task
copyArtifacts
(
type:
Sync
,
dependsOn:
[
'jadx-cli:installApp'
,
'jadx-gui:installApp'
])
{
...
...
@@ -69,5 +87,5 @@ task clean(type: Delete) {
}
task
wrapper
(
type:
Wrapper
)
{
gradleVersion
=
'1.1
1
'
gradleVersion
=
'1.1
2
'
}
gradle/wrapper/gradle-wrapper.jar
View file @
7669fa15
No preview for this file type
gradle/wrapper/gradle-wrapper.properties
View file @
7669fa15
...
...
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath
=
wrapper/dists
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
distributionUrl
=
http
\:
//services.gradle.org/distributions/gradle-1.1
1-all
.zip
distributionUrl
=
http
\:
//services.gradle.org/distributions/gradle-1.1
2-bin
.zip
jadx-cli/build.gradle
View file @
7669fa15
...
...
@@ -5,8 +5,8 @@ applicationName = 'jadx'
dependencies
{
compile
(
project
(
':jadx-core'
))
compile
'com.beust:jcommander:1.3
0
'
compile
'ch.qos.logback:logback-classic:1.1.
1
'
compile
'com.beust:jcommander:1.3
5
'
compile
'ch.qos.logback:logback-classic:1.1.
2
'
}
startScripts
{
...
...
jadx-gui/build.gradle
View file @
7669fa15
...
...
@@ -26,3 +26,10 @@ applicationDistribution.with {
}
}
test
{
jacoco
{
// coveralls plugin not support multi-project
enabled
=
false
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment