From 3167cd0817a586ab06bd291c5426facf92bc3c70 Mon Sep 17 00:00:00 2001 From: Skylot Date: Sat, 27 Jan 2018 19:59:30 +0300 Subject: [PATCH] fix bintray upload --- README.md | 16 +++++++++++----- bintray.json | 33 +++++++++++++++++++++------------ 2 files changed, 32 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 77f88b843..b976bd903 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ [![Code Coverage](https://codecov.io/gh/skylot/jadx/branch/master/graph/badge.svg)](https://codecov.io/gh/skylot/jadx) [![Coverity Scan Build Status](https://scan.coverity.com/projects/2166/badge.svg)](https://scan.coverity.com/projects/2166) [![SonarQube Bugs](https://sonarcloud.io/api/badges/measure?key=jadx&metric=bugs)](https://sonarcloud.io/dashboard?id=jadx) -[![Latest release](https://img.shields.io/github/release/skylot/jadx.svg)](https://github.com/skylot/jadx/releases/latest) [![Latest release downloads](https://img.shields.io/github/downloads/skylot/jadx/latest/total.svg)](https://github.com/skylot/jadx/releases/latest) [![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html) @@ -16,11 +15,17 @@ Command line and GUI tools for produce Java source code from Android Dex and Apk ### Downloads -- [unstable](https://bintray.com/skylot/jadx/unstable#files) -- from [github](https://github.com/skylot/jadx/releases) -- from [bintray](https://bintray.com/skylot/jadx/releases#files) -- from [sourceforge](http://sourceforge.net/projects/jadx/files/) +- latest [unstable build: ![Download](https://api.bintray.com/packages/skylot/jadx/unstable/images/download.svg) ](https://bintray.com/skylot/jadx/unstable/_latestVersion#files) +- release from [github: ![Latest release](https://img.shields.io/github/release/skylot/jadx.svg)](https://github.com/skylot/jadx/releases/latest) +- release from [bintray: ![Download](https://api.bintray.com/packages/skylot/jadx/releases/images/download.svg) ](https://bintray.com/skylot/jadx/releases/_latestVersion#files) +- release from [sourceforge](http://sourceforge.net/projects/jadx/files/) +After download unpack zip file go to `bin` directory and run: +- `jadx` - command line version +- `jadx-gui` - graphical version + +On Windows run `.bat` files with double-click\ +**Note:** ensure you have installed Java 8 64-bit version ### Building from source Java 8 JDK or higher must be installed: @@ -72,6 +77,7 @@ options: Example: jadx -d out classes.dex ``` +These options also worked on jadx-gui running from command line and override options from preferences dialog ### Troubleshooting ##### Out of memory error: diff --git a/bintray.json b/bintray.json index 5a439cad2..bedaa3578 100644 --- a/bintray.json +++ b/bintray.json @@ -5,21 +5,30 @@ "subject": "skylot", "desc": "Unstable", "website_url": "https://github.com/skylot/jadx", - "issue_tracker_url": "https://github.com/skylot/jadx", - "vcs_url": "https://github.com/skylot/jadx", - "licenses": ["Apache-2.0"], - "labels": ["unstable"], - "public_download_numbers": false, - "public_stats": false + "issue_tracker_url": "https://github.com/skylot/jadx/issues", + "vcs_url": "https://github.com/skylot/jadx.git", + "licenses": [ + "Apache-2.0" + ], + "labels": [ + "unstable" + ], + "public_download_numbers": true, + "public_stats": true }, - "version": { - "name": "BUILD_VERSION" + "name": "BUILD_VERSION", + "desc": "Dev build: BUILD_VERSION" }, - - "files": - [ - {"includePattern": "build/(jadx.*\.zip)", "uploadPattern": "$1"} + "files": [ + { + "includePattern": "build/(jadx.*\.zip)", + "uploadPattern": "$1", + "matrixParams": { + "override": 1 + }, + "list_in_downloads": true + } ], "publish": true }