Skip to content

Commit

Permalink
APP UPDATE
Browse files Browse the repository at this point in the history
  • Loading branch information
Raj-m01 committed Jul 7, 2022
1 parent ddfcd80 commit f403d2a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Binary file modified apk/News.apk
Binary file not shown.
4 changes: 0 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ android {
// to use this app
// A valid key will need to be entered
buildConfigField("String", 'API_KEY', API_KEY)
// buildConfigField('String' , 'myParameter', 'someValue')

}

Expand All @@ -44,9 +43,6 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
// buildTypes.each {
// it.buildConfigField 'String', 'API_KEY', API_KEY
// }
}


Expand Down
1 change: 1 addition & 0 deletions app/src/main/java/com/example/newsapp/SavedNewsActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ class SavedNewsActivity : AppCompatActivity() {
intent.putExtra(MainActivity.NEWS_DESCRIPTION, newsData[position].description)
intent.putExtra(MainActivity.NEWS_SOURCE, newsData[position].source)
intent.putExtra(MainActivity.NEWS_PUBLICATION_TIME, newsData[position].time)
intent.putExtra(MainActivity.NEWS_CONTENT, newsData[position].content)
startActivity(intent)

}
Expand Down

0 comments on commit f403d2a

Please sign in to comment.