user3235881
user3235881

Reputation: 487

Where is project.properties in Android Studio project

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

Answers (3)

savi
savi

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

JamesRGNT
JamesRGNT

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

Bogdan Stolyarov
Bogdan Stolyarov

Reputation: 126

You can create this file manually in project root directory, near other ".properties" files.

Upvotes: 0

Related Questions