Changes between Version 5 and Version 6 of androidtest


Ignore:
Timestamp:
10/27/2014 02:02:35 PM (11 years ago)
Author:
liaojiaohe
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • androidtest

    v5 v6  
    3939 
    4040{{{ 
     41buildscript { 
     42    repositories { 
     43        mavenCentral() 
     44    } 
     45    dependencies { 
     46        classpath 'com.android.tools.build:gradle:0.12.+' 
     47    } 
     48} 
     49apply plugin: 'android-library' 
     50 
    4151android { 
    4252    compileSdkVersion 17 
     
    6171        androidTest.java.srcDirs = ['tests/src'] 
    6272    } 
     73    defaultConfig {} 
     74    productFlavors { 
     75    } 
     76    buildTypes { 
     77    } 
     78} 
     79 
     80dependencies { 
    6381} 
    6482}}}