AkshayChordiya / News

A sample News 🗞 app built using Modern Android Development [Architecture Components, Coroutines, Retrofit, Room, Kotlin, Dagger]
MIT License
848 stars 168 forks source link

buildConfigField:NEWS_API_KEY #11

Closed Catherinelhl closed 6 years ago

Catherinelhl commented 6 years ago

There is a problem:Could not get unknown property "NEWS_API_KEY" for DefaultConfig_Decorated{.....;how to solve it?

AkshayChordiya commented 6 years ago

You need to add NEWS_API_KEY in your gradle.properties for Gradle to build. Kindly go through the following steps to generate key for your app.

Android Studio should have made the file for you if not then manually create the file and add this line:

NEWS_API_KEY = "YOUR_API_KEY"

Duplicate of #1

Catherinelhl commented 6 years ago

Thank you!