当前位置:   article > 正文

unity 导出 包 到 android studio 中打包_plugin [id: 'com.android.application', version: '8

plugin [id: 'com.android.application', version: '8.4.0', apply: false] was n

遇到的一些问题

问题:1

Exception in thread "main" java.io.IOException: Downloading from https://services.gradle.org/distributions/gradle-8.6-bin.zip failed: timeout

解决方案:

Android Studio项目gradle下载慢问题_android studio下载依赖慢-CSDN博客

问题:2

Current Gradle version: 8.6 
Required Gradle version: 6.8

FAILURE: Build failed with an exception.

* Where:
Build file 'E:\zxqk\build.gradle.kts' line: 2

* What went wrong:
Plugin [id: 'com.android.application', version: '8.4.0', apply: false] was not found in any of the following sources:

- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (could not resolve plugin artifact 'com.android.application:com.android.application.gradle.plugin:8.4.0')
  Searched in the following repositories:
    Gradle Central Plugin Repository
    maven(https://jitpack.io)
    maven2(https://maven.aliyun.com/repository/gradle-plugin)
    maven3(https://maven.aliyun.com/repository/public)
    maven4(https://repo1.maven.org/maven2/)
    maven5(https://oss.sonatype.org/content/repositories/public)
    MavenRepo(https://maven.aliyun.com/repository/central)
    Google(https://maven.aliyun.com/repository/google)

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
> Get more help at https://help.gradle.org.

BUILD FAILED in 6s

解决方案:

【Gradle问题篇】Plugin [id: ‘com.android.application‘, version: ‘7.x.x‘, apply: false] was not found i... - 简书

问题3

A problem occurred configuring root project 'zxqk'.
> Could not resolve all files for configuration ':classpath'.
   > Could not find j2objc-annotations-2.8.jar (com.google.j2objc:j2objc-annotations:2.8).
     Searched in the following locations:
         https://maven.aliyun.com/repository/jcenter/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar
   > Could not find animal-sniffer-annotations-1.23.jar (org.codehaus.mojo:animal-sniffer-annotations:1.23).
     Searched in the following locations:
         https://maven.aliyun.com/repository/jcenter/org/codehaus/mojo/animal-sniffer-annotations/1.23/animal-sniffer-annotations-1.23.jar

Possible solution:
 - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html

解决方案:


问题4

访问

解决方案:

Could not get resource '

https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/4.0.1/gradle-4.0.1.pom

1. 设置 阿里云仓库地址 

  1. buildscript {
  2. repositories {
  3. google() // 保持Google Maven仓库
  4. // 添加阿里云的Google仓库镜像
  5. maven { url 'https://maven.aliyun.com/repository/google' }
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:4.0.1'
  9. // NOTE: Do not place your application dependencies here; they belong
  10. // in the individual module build.gradle files
  11. }
  12. }
  13. allprojects {
  14. repositories {
  15. google() // 在所有项目中也保持Google Maven仓库
  16. mavenCentral() // 保持Maven Central仓库
  17. // 同样添加阿里云的Google仓库镜像
  18. maven { url 'https://maven.aliyun.com/repository/google' }
  19. }
  20. }

2。查看 

是否被设置了代理

把 代理去掉。

问题5

Could not find org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.70.
Searched in the following locations:
  - https://dl.google.com/dl/android/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.70/kotlin-gradle-plugin-1.3.70.pom
  - https://maven.aliyun.com/repository/google/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.70/kotlin-gradle-plugin-1.3.70.pom
Required by:
    project :
解决方案 :

Kotlin版本迭代较快,可能该版本已被新的版本替代或者从仓库中移除。访问Kotlin官网查看发布的Kotlin版本历史,选取一个合适的版本替换

在 build.gradle 文件中设置

maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'https://maven.aliyun.com/nexus/content/groups/public' }

问题6

ould not get unknown property 'unityStreamingAssets' for object of type com.android.build.gradle.in

解决方案

 unityStreamingAssets=.unity3d, google-services-desktop.json, google-services.json, GoogleService-Info.plist

问题7

Installed Build Tools revision 34.0.0 is corrupted. Remove and install again using the SDK Manager.

解决方案:

2022年最优解决方案Installed Build Tools revision 31.0.0 is corrupted_build-tools31-CSDN博客

使用 Unity 导出 Android 项目 并在 Android Studio 中 编译

1. Unity 导出 Android 项目

2. 在 PlayerSettings 中 Player 中 other settings

3. 在 Edit 中 Preferences 设置

4. 在 导出的 文件夹中查找 build.gradle 文件

5. 找到 gradle 对应的 Android Studio 版本,

6. 查看 Android Studio 历史版本

Android Studio 下载文件归档  |  Android Developers

并把 Unity 导出的项目 使用 Android Studio 打开

7. 设置 国内镜像 地址

  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext.kotlin_version = "1.3.72"
  4. repositories {
  5. google() // 保持Google Maven仓库
  6. // 添加阿里云的Google仓库镜像
  7. maven { url 'https://maven.aliyun.com/repository/google' }
  8. // 用于下载 kotlin-gradle-plugin
  9. maven { url 'https://maven.aliyun.com/repository/public'}
  10. // 用于下载 kotlin-gradle-plugin
  11. maven { url 'https://maven.aliyun.com/repository/jcenter' }
  12. }
  13. dependencies {
  14. classpath 'com.android.tools.build:gradle:4.0.1'
  15. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  16. }
  17. }
  18. allprojects {
  19. repositories {
  20. // 同样添加阿里云的Google仓库镜像
  21. maven { url 'https://maven.aliyun.com/repository/google' }
  22. maven { url 'https://maven.aliyun.com/repository/public' }
  23. maven { url 'https://maven.aliyun.com/repository/jcenter' }
  24. google() // 在所有项目中也保持Google Maven仓库
  25. mavenCentral() // 保持Maven Central仓库
  26. }
  27. }
  28. task clean(type: Delete) {
  29. delete rootProject.buildDir
  30. }

7. 在 Android Studio 中 设置 版本信息

8. SDK 版本

9. 在 app 中设置 和 unityLibrary 中一样的版本信息

10. 在 gradle.properties 中设置 本地 gradle 版本

  1. #Sat Jun 15 20:58:14 CST 2024
  2. distributionBase=GRADLE_USER_HOME
  3. distributionPath=wrapper/dists
  4. zipStoreBase=GRADLE_USER_HOME
  5. zipStorePath=wrapper/dists
  6. distributionUrl=file:///E:/download/gradle-6.1.1-all.zip

11生成 SSL 证书

在 jdk 中

keytool -genkey -v -keystore test.keystore -alias test_name -keyalg RSA -keysize 2048 -validity 10000 

输入对应信息即可。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/737722
推荐阅读
相关标签
  

闽ICP备14008679号