Created
January 19, 2017 06:47
-
-
Save shaobin0604/f9f9eb94161734a00edd838aabf0d987 to your computer and use it in GitHub Desktop.
lint ignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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