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
project.ext.preDexLibs = !project.hasProperty('disablePreDex') | |
subprojects { | |
project.plugins.whenPluginAdded { plugin -> | |
if ("com.android.build.gradle.AppPlugin".equals(plugin.class.name)) { | |
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs | |
} else if ("com.android.build.gradle.LibraryPlugin".equals(plugin.class.name)) { | |
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs | |
} | |
} |
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
#!/Library/Frameworks/Python.framework/Versions/2.7/bin/python | |
import sys | |
import os | |
import shutil | |
import time | |
from datetime import datetime | |
import argparse | |
import re | |
import Image |