Sign inSign up

msrd0/gradle-android

By msrd0

Updated over 8 years ago

Debian with Gradle and Android-SDK

Image
0

1.0K

msrd0/gradle-android repository overview

docker-gradle-android

Corresponding docker image: msrd0/gradle-android

The docker images is based on debian:stretch and contains (state 2017/06/19):

SoftwareVersion
JDK1.8.0_131
Gradle3.2.1
Maven3.3.9
Android ComponentVersion
Android SDK25.0.0
Android SDK Platform23
Android Build-Tools24.0.0
Android Support Repositoryr47 (23.4.0)
Android Support Constraint Library1.0.2
Android Gradle Plugin2.2.2

Please note that lint is not working at the moment! This is not my fault but a problem with debian's android packages.

Buildscript
buildscript {
  repositories {
    mavenLocal()
    jcenter()
  }
  dependencies {
    // version 2.2.2 is in local maven repo -> quicker builds
    classpath 'com.android.tools.build:gradle:2.2.2'
  }
}
Subproject
repositories {
  mavenLocal()
  jcenter()
}

apply plugin: 'com.android.application'

android {
  // don't change those versions:
  compileSdkVersion 23
  buildToolsVersion "24.0.0"
  
  defaultConfig {
    targetSdkVersion 23
  }
  
  lintOptions {
    abortOnError false
  }
}

dependencies {
  // don't change those versions:
  compile 'com.android.support:appcompat-v7:23.4.0'
  compile 'com.android.support:support-v4:23.4.0'
  compile 'com.android.support:design:23.4.0'
  compile 'com.android.support.constraint:constraint-layout:1.0.2'
}

Tag summary

Content type

Image

Digest

Size

434.7 MB

Last updated

over 8 years ago

docker pull msrd0/gradle-android