All Projects → ximsfei → DexHelper

ximsfei / DexHelper

Licence: Apache-2.0 License
Gradle Plugin to analyze per-dex with Android assemble command.

Programming Languages

groovy
2714 projects

Projects that are alternatives of or similar to DexHelper

RocketXPlugin
🔥🔥 android 端编译加速插件🚀 自动识别未改动 module 并在编译流程中替换为 aar ,只编译改动模块,加速 Android apk 的编译速度。
Stars: ✭ 408 (+2047.37%)
Mutual labels:  gradle, dex
Stringfog
一款自动对字节码中的字符串进行加密Android插件工具
Stars: ✭ 733 (+3757.89%)
Mutual labels:  gradle, dex
Fastdex
🚀 加快 apk 的编译速度 🚀
Stars: ✭ 1,457 (+7568.42%)
Mutual labels:  gradle, dex
dali
Indie assembler/linker for Dalvik VM .dex & .apk files (Work In Progress)
Stars: ✭ 55 (+189.47%)
Mutual labels:  dex
Nix
Nix - NFT Decentralised Exchange Smart Contracts
Stars: ✭ 40 (+110.53%)
Mutual labels:  dex
microframeworks-showcase
A simple grocery list webapplication implemented with the Microframeworks Spark Java, Jodd, Ninja, Javalite, Pippo and Ratpack
Stars: ✭ 29 (+52.63%)
Mutual labels:  gradle
karibu10-helloworld-application
Karibu-DSL HelloWorld application in Vaadin 14
Stars: ✭ 14 (-26.32%)
Mutual labels:  gradle
asgardex-electron
||| ASGARDEX Electron App ||| desktop wallet and decentralized exchange for THORChain ||| 100% open-source
Stars: ✭ 93 (+389.47%)
Mutual labels:  dex
EmbeddedTools
Additions to the model-based DSL for deploying Java and Native projects to remote targets
Stars: ✭ 14 (-26.32%)
Mutual labels:  gradle
gradle-cleaner-intellij-plugin
Force clear delaying & no longer needed Gradle tasks.
Stars: ✭ 26 (+36.84%)
Mutual labels:  gradle
tmdb-api
This Kotlin Multiplatform library is for accessing the TMDB API to get movie and TV show content. Using for Android, iOS, and JS projects.
Stars: ✭ 31 (+63.16%)
Mutual labels:  gradle
uniswap-skim
scripts to scan all of the uniswapV2🦄 contracts on ethereum and search for skim opportunities
Stars: ✭ 126 (+563.16%)
Mutual labels:  dex
MultiLamp
Android library to showcase/highlight the multiple views on same overlay
Stars: ✭ 235 (+1136.84%)
Mutual labels:  gradle
DumpDex
基于Xposed的极简易的dump dex文件脱壳工具
Stars: ✭ 46 (+142.11%)
Mutual labels:  dex
awesome-samsung-dex
An "awesome" list of Samsung DeX resources
Stars: ✭ 18 (-5.26%)
Mutual labels:  dex
polkaswap-web
Polkaswap is a non-custodial, cross-chain AMM DEX protocol for swapping tokens based on Polkadot and Kusama relay chains, Polkadot and Kusama parachains, and blockchains directly connected via bridges. Polkaswap removes trusted intermediaries and provides the opportunity for faster trading.
Stars: ✭ 43 (+126.32%)
Mutual labels:  dex
MicroServiceExample
针对微服务的各种例子实现
Stars: ✭ 25 (+31.58%)
Mutual labels:  gradle
vlsi-release-plugins
A set of plugins to simplify Gradle release tasks
Stars: ✭ 30 (+57.89%)
Mutual labels:  gradle
android-easy-gcm
Use this library to add GCM to your project, only in a few minutes !
Stars: ✭ 50 (+163.16%)
Mutual labels:  gradle
heroku-buildpack-gradle
This is a Heroku buildpack for Gradle apps. It uses Gradle to build your application and OpenJDK to run it.
Stars: ✭ 58 (+205.26%)
Mutual labels:  gradle

DexHelper

中文版

Simple Gradle Plugin to analyze per-dex in an Android Package, which generated by assemble command, to aid in getting under the 65,536 referenced method limit.

Integration

Dependencies

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.3'
        classpath 'com.ximsfei:dexhelper:0.0.1'
    }
}

Apply Plugin

apply plugin: 'com.android.application'
apply plugin: 'com.ximsfei.dexhelper'

Run With Gradle

$ ./gradlew assemble -q
  DexHelper: apk file -> app-debug.apk
  DexHelper: dex file -> classes.dex
  DexHelper: method size -> 27022
  DexHelper: apk file -> app-release-unsigned.apk
  DexHelper: dex file -> classes.dex
  DexHelper: method size -> 27021

License Apache

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].