Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

按照步骤,执行run-android报错 #61

Open
Ariel08081214 opened this issue Dec 22, 2017 · 7 comments
Open

按照步骤,执行run-android报错 #61

Ariel08081214 opened this issue Dec 22, 2017 · 7 comments

Comments

@Ariel08081214
Copy link

2017-12-22_20-13-48

@Ariel08081214
Copy link
Author

请问是什么原因呢?

@milk-coffee-tea
Copy link

请问解决了吗

@1064989385
Copy link

我也是 这个问题

@Shouheng88
Copy link

Shouheng88 commented May 11, 2018

刚开始编译项目的时候,我也遇到了这个问题。我的情况中的解决方案是移除他的签名相关的配置。你可以用Android Studio打开该项目,然后在Terminal中输入gradlew --info,这样你可以获取到更多的输出的错误信息。然后,我发现是他的签名那里出的问题,然后我对代码做了几处修改(全部都是在app下面的build.gradle文件里面):

1.首先把def enableProguardInReleaseBuilds = true修改为false
2.然后移除

def getPassword(String currentUser, String keyChain) {
    def stdout = new ByteArrayOutputStream()
    def stderr = new ByteArrayOutputStream()
    exec {
        commandLine 'security', '-q', 'find-generic-password', '-a', currentUser, '-s', keyChain, '-w'
        standardOutput = stdout
        errorOutput = stderr
        ignoreExitValue true
    }
    //noinspection GroovyAssignabilityCheck
    stdout.toString().trim()
}
def pass = getPassword("jph","jph_android_keystore")

3.再移除

    signingConfigs {//签名配置
        release {
            storeFile file(MYAPP_RELEASE_STORE_FILE)
            storePassword pass
            keyAlias MYAPP_RELEASE_KEY_ALIAS
            keyPassword pass
        }
    }

4.最后把buildTypes中的下面代码移除

            signingConfig signingConfigs.release

再次编译就可以编译通过了

@Ariel08081214
Copy link
Author

我后来没试过了,楼上的解决方法可以试试 @milk-coffee-tea @1064989385

@YanChenYuan
Copy link

Follow these steps to solve the problem.

@chlbeyond93
Copy link

按照这位仁兄@Shouheng88 的方法去做,我的也可以编译了,虽然跑到虚拟机后还是有报错

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants