Skip to content

Instantly share code, notes, and snippets.

@shaobin0604
Created January 19, 2017 06:47
Show Gist options
  • Save shaobin0604/f9f9eb94161734a00edd838aabf0d987 to your computer and use it in GitHub Desktop.
Save shaobin0604/f9f9eb94161734a00edd838aabf0d987 to your computer and use it in GitHub Desktop.
lint ignore
android {
lintOptions {
checkReleaseBuilds false
abortOnError false
disable 'GoogleAppIndexingWarning',
'IconMissingDensityFolder',
'IconDensities',
'RtlHardcoded',
'RtlSymmetry',
'ContentDescription',
'DefaultLocale',
'OldTargetApi',
'PackageManagerGetSignatures',
'SimpleDateFormat'
}
packagingOptions {
exclude 'META-INF/LGPL2.1'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment