Home | History | Annotate | Download | only in apksig
      1 // Generic Gradle project
      2 
      3 apply plugin: 'java'
      4 
      5 sourceCompatibility = '1.8'
      6 
      7 repositories {
      8     jcenter()
      9 }
     10 
     11 dependencies {
     12     testCompile 'junit:junit:4.12'
     13 }
     14