Popularity
5.9
Stable
Activity
0.0
Stable
705
24
110
Programming language: Groovy
License: Apache License 2.0
Latest version: v0.3.0
lint-cleaner-plugin alternatives and similar packages
Based on the "Gradle" category.
Alternatively, view lint-cleaner-plugin alternatives based on common mentions on social networks and blogs.
-
gradle-play-publisher
GPP is Android's unofficial release automation Gradle Plugin. It can do anything from building, uploading, and then promoting your App Bundle or APK to publishing app listings and other metadata. -
dexcount-gradle-plugin
A Gradle plugin to report the number of method references in your APK on every build. -
sdk-manager-plugin
Gradle plugin which downloads and manages your Android SDK. -
Cipher.so
A simple way to encrypt your secure data like passwords into a native .so library. -
groovy-android-gradle-plugin
A Gradle plugin to support the Groovy language for building Android apps -
Easylauncher gradle plugin for Android
Add a different ribbon to each of your Android app variants using this gradle plugin. Of course, configure it as you will -
gradle-android-scala-plugin
gradle-android-scala-plugin adds scala language support to official gradle android plugin -
⏰ Dagger Track
Gradle plugin to add clock trackings to your dagger components and subcomponents -
gradle-protobuf-plugin
Gradle plugin for Google Protocol Buffers -
GradleMavenPush
Helper to upload Gradle Android Artifacts, Gradle Java Artifacts and Gradle Kotlin Artifacts to Maven repositories (JCenter, Maven Central, Corporate staging/snapshot servers and local Maven repositories). -
EasyDokkaPlugin
Gradle Script plugin to generate documentation by Dokka documentation engine in Javadoc or other formats for Java, Kotlin, Android and non-Android projects. It's very easy, you don't need to add to dependencies section additional classpath or think about compatibility issues, you don't need additional repositories also.
Appwrite - The open-source backend cloud platform
The open-source backend cloud platform for developing Web, Mobile, and Flutter applications. You can set up your backend faster with real-time APIs for authentication, databases, file storage, cloud functions, and much more!
Promo
appwrite.io
Do you think we are missing an alternative of lint-cleaner-plugin or a related project?
README
Lint Cleaner Plugin
Removes unused resources reported by Android lint including strings, colors and dimensions.
Depracated
As of Android Studio 2.0+ you can use Refactor -> Remove Unused Resources
Usage
Apply the plugin in your build.gradle
:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
classpath 'com.droidtitan:lint-cleaner-plugin:0.3.0'
}
}
apply plugin: 'android'
apply plugin: 'com.droidtitan.lintcleaner'
Finally, to remove unused resources use:
gradle lintClean
Optional Configuration using DSL
lintCleaner {
// Exclude specific files
exclude = ['com_crashlytics_export_strings.xml','config.xml']
// Ability to ignore all resource files. False by default.
ignoreResFiles = true
// Default path is build/outputs/lint-results.xml
lintXmlFilePath = 'path/to/lint-results.xml'
}