You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
391 B

  1. ext.postBuildExtras = {
  2. android {
  3. compileOptions {
  4. sourceCompatibility JavaVersion.VERSION_1_7
  5. targetCompatibility JavaVersion.VERSION_1_7
  6. }
  7. allprojects {
  8. compileOptions {
  9. sourceCompatibility = JavaVersion.VERSION_1_7
  10. targetCompatibility = JavaVersion.VERSION_1_7
  11. }
  12. }
  13. }
  14. }