unity 导出 包 到 android studio 中打包

遇到的一些问题

问题: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. 设置 阿里云仓库地址 

buildscript {
    repositories {
        google() // 保持Google Maven仓库
        // 添加阿里云的Google仓库镜像
        maven { url 'https://maven.aliyun.com/repository/google' }
    }
    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 {
        google() // 在所有项目中也保持Google Maven仓库
        mavenCentral() // 保持Maven Central仓库
        // 同样添加阿里云的Google仓库镜像
        maven { url 'https://maven.aliyun.com/repository/google' }
    }
}

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. 设置 国内镜像 地址

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    ext.kotlin_version = "1.3.72"
    repositories {
        google() // 保持Google Maven仓库
        // 添加阿里云的Google仓库镜像
        maven { url 'https://maven.aliyun.com/repository/google' }
        // 用于下载 kotlin-gradle-plugin
        maven { url 'https://maven.aliyun.com/repository/public'}
        // 用于下载 kotlin-gradle-plugin
        maven { url 'https://maven.aliyun.com/repository/jcenter' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:4.0.1'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

allprojects {
    repositories {
        // 同样添加阿里云的Google仓库镜像
        maven { url 'https://maven.aliyun.com/repository/google'  }
        maven { url 'https://maven.aliyun.com/repository/public'  }
        maven { url 'https://maven.aliyun.com/repository/jcenter' }
        google() // 在所有项目中也保持Google Maven仓库
        mavenCentral() // 保持Maven Central仓库
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

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

8. SDK 版本

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

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

#Sat Jun 15 20:58:14 CST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
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 

输入对应信息即可。

  • 11
    点赞
  • 18
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值