小编Na-*_*Hae的帖子

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

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

它正在成功构建但是当我尝试运行此应用程序时,给我错误如下:

在此输入图像描述

我的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 …
Run Code Online (Sandbox Code Playgroud)

android ioexception android-ndk android-studio

9
推荐指数
1
解决办法
960
查看次数

Android上的语言支持

我想通过提供文件在Android中键入除英语以外的其他语言,例如希伯来语ttf。在build中有任何东西API可以使用吗?任何帮助,将不胜感激,

java android internationalization android-assets

3
推荐指数
1
解决办法
2249
查看次数