Questions tagged [android-gradle-3.1.0]

18 questions
0
votes
2 answers

Android Build failure : Could not get unknown property 'assembleDebug' for project

I need to create Jar and copy to lib folder, which is done in following task : task copyJarToLib(type: Copy, dependsOn: 'createJar') { from "build/libs/lib1.jar" from "build/libs/lib2.jar" into "../App/libs/" } I have to execute this…
Vinodh
  • 1,069
  • 2
  • 10
  • 22
0
votes
0 answers

api and implementation in build.gradle for Android Studio 3.1.1

I have a library project "module-core". I have changed all dependencies from compile to api as I want to use all of these in my main project too. This is how my dependencies in library project looks like : apply plugin: 'com.android.library' …
0
votes
1 answer

unable to install signed apk or build apk - showing "App not installed dialog" - "android-P"

I am facing an issue in installing(build or signed) apk in the device showing "App not installed". It's working fine previously, after updating my build tools to "3.1.0" and compile SDK to "android-P" facing this issue, If I downgrade to "26",…
1
2