How to solve ASEC_CREATE permission?

后端 未结 4 1844
刺人心
刺人心 2021-01-15 02:06

I can´t deploy my project in my cell phone anymore. I don´t know if it is because I have updated Gradle or update my cell phone system or both.

The error message is

4条回答
  •  温柔的废话
    2021-01-15 02:49

    This problem appeared to me when I upgraded Android Studio and then Gradle.

    To solve the problem I returned the version of Gradle:

    // Top-level build file where you can add configuration options common to all sub-projects / modules.
    
    Buildscript {
         Repositories {
             Jcenter ()
         }
         Dependencies {
              classpath 'com.android.tools.build:gradle:2.x.x'
              ...
         }
    }
    

提交回复
热议问题