From b9f447ad4520ad9029b85d352b9c241f1b675102 Mon Sep 17 00:00:00 2001 From: Home Date: Mon, 31 Oct 2022 13:42:33 -0400 Subject: [PATCH 1/3] Update README.md --- Newzy/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Newzy/README.md b/Newzy/README.md index e554b8a..9772a7d 100644 --- a/Newzy/README.md +++ b/Newzy/README.md @@ -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 From b3414ba48da36b46350aab869ca521b509a0af7c Mon Sep 17 00:00:00 2001 From: Home Date: Mon, 31 Oct 2022 14:04:10 -0400 Subject: [PATCH 2/3] Update RetrofitService.kt --- .../src/main/java/com/example/myapplication/RetrofitService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Newzy/app/src/main/java/com/example/myapplication/RetrofitService.kt b/Newzy/app/src/main/java/com/example/myapplication/RetrofitService.kt index 4198f5c..211d3e5 100644 --- a/Newzy/app/src/main/java/com/example/myapplication/RetrofitService.kt +++ b/Newzy/app/src/main/java/com/example/myapplication/RetrofitService.kt @@ -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 { From 7c67e192e6152780fb57ea512e0a6c3ee4dce37e Mon Sep 17 00:00:00 2001 From: Home Date: Mon, 31 Oct 2022 14:27:14 -0400 Subject: [PATCH 3/3] Update SplashScreen.kt --- .../src/main/java/com/example/myapplication/ui/SplashScreen.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Newzy/app/src/main/java/com/example/myapplication/ui/SplashScreen.kt b/Newzy/app/src/main/java/com/example/myapplication/ui/SplashScreen.kt index cf20e4b..7d45526 100644 --- a/Newzy/app/src/main/java/com/example/myapplication/ui/SplashScreen.kt +++ b/Newzy/app/src/main/java/com/example/myapplication/ui/SplashScreen.kt @@ -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()