Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Newzy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

## Android Development Features 🛠

- RecyclerView
- RecyclerView with driftUtil
- StackCard View
- Networking with Retrofit
- Webview
- Webview with android libary
- Splash Screen with Animation
- Use of Coroutines

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import retrofit2.Retrofit
import retrofit2.converter.gson.GsonConverterFactory
import retrofit2.http.GET


//Interface which will communicate with Retorfit instance
const val apikey = "95b6d8836ab74b2386fe24441682c94f"
interface RetrofitService {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class SplashScreen : AppCompatActivity() {
fun animationSetup(){
val handler = Handler()
handler.postDelayed(Runnable {

//Intent for activty
val intent = Intent(this@SplashScreen, MainActivity::class.java)
startActivity(intent)
finish()
Expand Down