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 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 { 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()