Skip to content Skip to sidebar Skip to footer

Dependencies By Flavor In Android Studio Build.gradle File, Is It Possible?

image in my build.gradle file i have the following dependencies: dependencies { compile 'com.android.support:support-v13:22.1.1' compile 'com.android.support:appcompat-v7:2

Solution 1:

Change to usaMockCompile change from c to C.

dependencies {
    compile 'com.android.support:support-v13:22.1.1'
    compile 'com.android.support:appcompat-v7:22.1.1'
    usaMockCompile 'com.jakewharton:butterknife:6.0.0'
}

Post a Comment for "Dependencies By Flavor In Android Studio Build.gradle File, Is It Possible?"