/android-dev

Primary LanguageJavaApache License 2.0Apache-2.0

android-dev

adt-bundle-windows

https://dl.google.com/android/adt/adt-bundle-windows-x86_64-20140702.zip?utm_source=androiddevtools&utm_medium=website

android studio

gradle(can be install by android-studio)

gradle: https://services.gradle.org/distributions/gradle-{revision}-all.zip

build-tools(can be install by android-studio)

build-tools: https://dl.google.com/android/repository/build-tools_r{revision}-windows.zip

Android SDK Platform

sdk-platform: https://dl.google.com/android/repository/platform-{num}_r{revision}.zip

ndk repos(can be install by android-studio)

ninja

The cmake in android-studio may contains ninja, if you install cmake by your self,
you may need download at https://github.com/ninja-build/ninja/releases, and copy to directory of cmake.exe

gradle plugin(can be install by android-studio)

https://dl.google.com/android/studio/plugins/android-gradle/preview/offline-android-gradle-plugin-preview.zip

gmaven offline(can be install by android-studio)

https://dl.google.com/android/studio/maven-google-com/stable/offline-gmaven-stable.zip

gradle mirror in china

buildscript {
    repositories {
        maven { url 'https://maven.aliyun.com/repository/google/' }
        maven { url 'https://maven.aliyun.com/repository/jcenter/'}
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:4.0.1'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }        
}

allprojects {
    repositories {
        maven { url 'https://maven.aliyun.com/repository/google/' }
        maven { url 'https://maven.aliyun.com/repository/jcenter/'}
    }
}

gradle-wrapper.properties

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=file:///d:/dev/adt/gradle-7.5-bin.zip