Amazon and Google

Amazon gradle project looks like this:

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.amazon.device.tools.build:gradle:1.0.+'
    }
}

      

while google gradle project looks like this:

 buildscript {
        repositories {
            jcenter()
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:1.1.0'
        }
    }

      

Does anyone know if it is possible to customize flags in a gradle module? If this is not possible, is it possible to find out the path to the gradle project in the gradle module?

+3


source to share





All Articles