gpt4 book ai didi

Android Error : java. io.IOException : CreateProcess error=2, 系统找不到指定的文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:42:55 27 4
gpt4 key购买 nike

我在构建一个电子商务应用程序时遇到以下错误。

构建成功,但是当我尝试运行这个应用程序时,出现如下错误:

enter image description here

我的 build.gradle 具有以下依赖项:

dependencies {
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '27.1.0'
}
}
}
}
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:27.1.0'
compile 'com.android.support:design:27.1.0'
compile 'com.android.support:cardview-v7:27.1.0'
compile 'com.android.support:recyclerview-v7:27.1.0'
compile 'com.android.support:support-v4:27.1.0'
compile 'com.android.support:preference-v7:27.1.0'
compile 'com.android.support:preference-v14:27.1.0'
compile 'com.google.code.gson:gson:2.8.2'
compile 'com.squareup.retrofit2:retrofit:2.3.0'
compile 'com.squareup.retrofit2:converter-gson:2.3.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.mcxiaoke.volley:library:1.0.19'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.daimajia.slider:library:1.1.5@aar'
compile 'com.crystal:crystalrangeseekbar:1.1.1'
compile 'com.github.paolorotolo:appintro:4.1.0'
compile 'com.stripe:stripe-android:2.0.2'
compile 'com.braintreepayments:card-form:3.3.0'
compile 'com.braintreepayments.api:drop-in:3.+'
compile 'com.braintreepayments.api:braintree:2.12.0'
compile 'com.paypal.sdk:paypal-android-sdk:2.15.3'
compile 'com.facebook.android:facebook-android-sdk:4.31.0'
compile 'com.google.firebase:firebase-ads:12.0.1'
compile 'com.google.firebase:firebase-auth:12.0.1'
compile 'com.google.firebase:firebase-messaging:12.0.1'
compile 'com.google.android.gms:play-services-auth:12.0.1'
compile 'com.google.android.gms:play-services-maps:12.0.1'
compile 'com.google.android.gms:play-services-location:12.0.1'
}

不知道是哪里出了问题,请问有大神知道吗

最佳答案

通过提供您的 CMake 或 ndk-build 脚本文件的路径,

将 Gradle 链接到您的本地库。 Gradle 使用构建脚本将源代码导入您的 Android Studio 项目并将您的原生库(SO 文件)打包到 APK 中。

如果您现有的项目使用已弃用的 ndkCompile 工具,您应该在配置 Gradle 以使用 CMake 或 ndk-build 之前打开您的 build.properties 文件并删除以下代码行:

// Remove this line
android.useDeprecatedNdk = true

关于Android Error : java. io.IOException : CreateProcess error=2, 系统找不到指定的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49707158/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com