1. 程式人生 > >react-native 環境搭建

react-native 環境搭建

androidstudio gradle離線包gradle-x.x-all.zip離線配置路徑問題詳細解決步驟

升級AndroidStudio 到2.3以後新建專案突然一直卡在了building....,然後就各種baidu,網上說的路徑也不清晰,經過各種嘗試 找到.gradle資料夾路徑:windows一般在 C:\Users\Administrator\.gradle mac是在:使用者/(當前使用者目錄)/.gradle, mac下預設以點開頭的目錄都不顯示,方法請自行百度, 在終端弄了以後一定要注意!強制退出Finder後重新啟動才可以生效!!!(我親自踩過的坑),然後比如你新建專案時候 在...../.gradle/wrapper/dists/ 目錄下會有一個gradle-x.x-all的一個資料夾,x.x是版本號,然後gradle-x.x-all目錄下會有一長串字母數字的資料夾, 然後將你下載的離線的gradle-x.x-all.zip放在這個數字字母組合的目錄下即可(不需要解壓!!!),重啟androidstudio後,新建專案即可,嗖嗖嗖的就構建好了。 --------------------- 本文來自 奔跑的雨醬 的CSDN 部落格 ,全文地址請點選:https://blog.csdn.net/csdn_lwp/article/details/64438532?utm_source=copy

使用阿里雲國內映象

對單個專案生效,在專案中的build.gradle修改內容

buildscript {
    repositories {
        maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
                maven{ url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.3'

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

allprojects {
    repositories {
        maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
        maven{ url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
    }
}

對所有專案生效,在USER_HOME/.gradle/下建立init.gradle檔案

allprojects{
    repositories {
        def ALIYUN_REPOSITORY_URL = 'http://maven.aliyun.com/nexus/content/groups/public'
        def ALIYUN_JCENTER_URL = 'http://maven.aliyun.com/nexus/content/repositories/jcenter'
        all { ArtifactRepository repo ->
            if(repo instanceof MavenArtifactRepository){
                def url = repo.url.toString()
                if (url.startsWith('https://repo1.maven.org/maven2')) {
                    project.logger.lifecycle "Repository ${repo.url} replaced by $ALIYUN_REPOSITORY_URL."
                    remove repo
                }
                if (url.startsWith('https://jcenter.bintray.com/')) {
                    project.logger.lifecycle "Repository ${repo.url} replaced by $ALIYUN_JCENTER_URL."
                    remove repo
                }
            }
        }
        maven {
                url ALIYUN_REPOSITORY_URL
            url ALIYUN_JCENTER_URL
        }
    }
}