Reputation: 487
I was following this instructions to add a library in android studio. The last step is to add the line manifestmerger.enabled=true
in project.properties
. I have few .properties
files such as local.properties
, gradle.properties
, cache.properties
but I can't find project.properties
file.
Upvotes: 10
Views: 16075
Reputation: 537
project.properties is a Eclipse thing and Android studio does not use project.properties file. If you need one, it has to be manually created. But it will not be used by Android Studio.
Upvotes: 2
Reputation: 616
The step you're talking about is for Eclipse not Android Studio, which you have to follow only the first two instructions:
Step 1. Configure your app’s build.gradle File
Make sure you have a jcenter() entry in your repositories like so:
repositories {
jcenter()
}
add the library AAR as a dependency like so:
dependencies {
compile 'org.altbeacon:android-beacon-library:2+'
}
Upvotes: 5
Reputation: 126
You can create this file manually in project root directory, near other ".properties" files.
Upvotes: 0