diff --git a/Quizime/.gitignore b/Quizime/.gitignore
new file mode 100644
index 0000000..aa724b7
--- /dev/null
+++ b/Quizime/.gitignore
@@ -0,0 +1,15 @@
+*.iml
+.gradle
+/local.properties
+/.idea/caches
+/.idea/libraries
+/.idea/modules.xml
+/.idea/workspace.xml
+/.idea/navEditor.xml
+/.idea/assetWizardSettings.xml
+.DS_Store
+/build
+/captures
+.externalNativeBuild
+.cxx
+local.properties
diff --git a/Quizime/.idea/.gitignore b/Quizime/.idea/.gitignore
new file mode 100644
index 0000000..26d3352
--- /dev/null
+++ b/Quizime/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/Quizime/.idea/compiler.xml b/Quizime/.idea/compiler.xml
new file mode 100644
index 0000000..fb7f4a8
--- /dev/null
+++ b/Quizime/.idea/compiler.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/.idea/gradle.xml b/Quizime/.idea/gradle.xml
new file mode 100644
index 0000000..5cd135a
--- /dev/null
+++ b/Quizime/.idea/gradle.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/.idea/jarRepositories.xml b/Quizime/.idea/jarRepositories.xml
new file mode 100644
index 0000000..0380d8d
--- /dev/null
+++ b/Quizime/.idea/jarRepositories.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/.idea/misc.xml b/Quizime/.idea/misc.xml
new file mode 100644
index 0000000..036871e
--- /dev/null
+++ b/Quizime/.idea/misc.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/.idea/runConfigurations.xml b/Quizime/.idea/runConfigurations.xml
new file mode 100644
index 0000000..797acea
--- /dev/null
+++ b/Quizime/.idea/runConfigurations.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/app/.gitignore b/Quizime/app/.gitignore
new file mode 100644
index 0000000..42afabf
--- /dev/null
+++ b/Quizime/app/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/Quizime/app/build.gradle b/Quizime/app/build.gradle
new file mode 100644
index 0000000..a496169
--- /dev/null
+++ b/Quizime/app/build.gradle
@@ -0,0 +1,47 @@
+plugins {
+ id 'com.android.application'
+ id 'kotlin-android'
+ id 'kotlin-android-extensions'
+}
+
+android {
+ compileSdkVersion 30
+ buildToolsVersion "30.0.3"
+
+ defaultConfig {
+ applicationId "com.example.quizime"
+ minSdkVersion 21
+ targetSdkVersion 30
+ versionCode 1
+ versionName "1.0"
+
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+ kotlinOptions {
+ jvmTarget = '1.8'
+ }
+}
+
+dependencies {
+
+ implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
+ implementation 'androidx.core:core-ktx:1.6.0'
+ implementation 'androidx.appcompat:appcompat:1.3.1'
+ implementation 'com.google.android.material:material:1.4.0'
+ implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
+ testImplementation 'junit:junit:4.+'
+ implementation 'com.google.android.material:material:1.1.0-alpha06'
+ androidTestImplementation 'androidx.test.ext:junit:1.1.3'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
+}
\ No newline at end of file
diff --git a/Quizime/app/proguard-rules.pro b/Quizime/app/proguard-rules.pro
new file mode 100644
index 0000000..481bb43
--- /dev/null
+++ b/Quizime/app/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/Quizime/app/src/androidTest/java/com/example/quizime/ExampleInstrumentedTest.kt b/Quizime/app/src/androidTest/java/com/example/quizime/ExampleInstrumentedTest.kt
new file mode 100644
index 0000000..aeea9a2
--- /dev/null
+++ b/Quizime/app/src/androidTest/java/com/example/quizime/ExampleInstrumentedTest.kt
@@ -0,0 +1,24 @@
+package com.example.quizime
+
+import androidx.test.platform.app.InstrumentationRegistry
+import androidx.test.ext.junit.runners.AndroidJUnit4
+
+import org.junit.Test
+import org.junit.runner.RunWith
+
+import org.junit.Assert.*
+
+/**
+ * Instrumented test, which will execute on an Android device.
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+@RunWith(AndroidJUnit4::class)
+class ExampleInstrumentedTest {
+ @Test
+ fun useAppContext() {
+ // Context of the app under test.
+ val appContext = InstrumentationRegistry.getInstrumentation().targetContext
+ assertEquals("com.example.quizime", appContext.packageName)
+ }
+}
\ No newline at end of file
diff --git a/Quizime/app/src/main/AndroidManifest.xml b/Quizime/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..6933386
--- /dev/null
+++ b/Quizime/app/src/main/AndroidManifest.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/app/src/main/java/com/example/quizime/Constants.kt b/Quizime/app/src/main/java/com/example/quizime/Constants.kt
new file mode 100644
index 0000000..3e7992f
--- /dev/null
+++ b/Quizime/app/src/main/java/com/example/quizime/Constants.kt
@@ -0,0 +1,48 @@
+package com.example.quizime
+
+object Constants {
+
+ const val USER_NAME : String = "user_name"
+ const val TOTAL_QUESTIONS : String = "total_questions"
+ const val CORRECT_ANSWERS : String = "correct_answers"
+
+ fun getQuestions(): ArrayList{
+ val questionsList = ArrayList()
+
+ //questions start here
+
+ val que1 = Question(1,"Which Anime Character is this ?" ,
+ R.drawable.img_1 ,
+ "Monkey D. Luffy" , "Usopp" , "Marshal D. Teech" ,
+ "Gol D. Roger" ,1)
+ questionsList.add(que1)
+
+ val que2 = Question(2,"Which Anime show does this Character belongs to ?" ,
+ R.drawable.img_2 ,
+ "One Piece" , "Naruto" , "Tokyo Revengers" ,
+ "Tokyo Ghoul" ,4)
+ questionsList.add(que2)
+
+ val que3 = Question(3,"Which legendary show does this Character belongs to ?" ,
+ R.drawable.img_3,
+ "One Piece" , "Naruto" , "Tokyo Revengers" ,
+ "Dragon Ball" ,4)
+ questionsList.add(que3)
+
+ val que4 = Question(4,"Is he Light Yagami ?" ,
+ R.drawable.img_4,
+ "Yes" , "definiteLy" , "You're wrong , he's awesome" ,
+ "He's L" ,3)
+ questionsList.add(que4)
+
+ val que5 = Question(5,"Which fruit this guy ate ?" ,
+ R.drawable.img_5,
+ "Gumo Gumo ni" , "Mera Mera no Mi" , "Fire-Fire fruit" ,
+ "Flame-Fist fruit" ,2)
+ questionsList.add(que5)
+
+ return questionsList
+ }
+
+
+}
\ No newline at end of file
diff --git a/Quizime/app/src/main/java/com/example/quizime/MainActivity.kt b/Quizime/app/src/main/java/com/example/quizime/MainActivity.kt
new file mode 100644
index 0000000..f626c78
--- /dev/null
+++ b/Quizime/app/src/main/java/com/example/quizime/MainActivity.kt
@@ -0,0 +1,27 @@
+ package com.example.quizime
+
+import android.content.Intent
+import android.os.Bundle
+import android.view.View
+import android.widget.Toast
+import androidx.appcompat.app.AppCompatActivity
+import kotlinx.android.synthetic.main.activity_main.*
+
+ class MainActivity : AppCompatActivity() {
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_main)
+
+ window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_FULLSCREEN
+ submitbtn.setOnClickListener{
+ if (eett_name.text.toString().isEmpty()){
+ Toast.makeText(this,"Please Enter A Valid Name",Toast.LENGTH_SHORT).show()
+ }else{
+ val intent = Intent(this , QuizQuestionsActivity::class.java)
+ intent.putExtra(Constants.USER_NAME , eett_name.text.toString())
+ startActivity(intent)
+ finish()
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Quizime/app/src/main/java/com/example/quizime/Question.kt b/Quizime/app/src/main/java/com/example/quizime/Question.kt
new file mode 100644
index 0000000..529b8bb
--- /dev/null
+++ b/Quizime/app/src/main/java/com/example/quizime/Question.kt
@@ -0,0 +1,4 @@
+package com.example.quizime
+
+data class Question (val id: Int , val question :String , val image: Int , val optionOne : String ,
+val optionTwo : String , val optionThree : String , val optionFour : String , val correctAnswer : Int)
\ No newline at end of file
diff --git a/Quizime/app/src/main/java/com/example/quizime/QuizQuestionsActivity.kt b/Quizime/app/src/main/java/com/example/quizime/QuizQuestionsActivity.kt
new file mode 100644
index 0000000..f56c1a9
--- /dev/null
+++ b/Quizime/app/src/main/java/com/example/quizime/QuizQuestionsActivity.kt
@@ -0,0 +1,166 @@
+package com.example.quizime
+
+import android.content.Intent
+import android.graphics.Color
+import android.graphics.Typeface
+import android.os.Bundle
+import android.view.View
+import android.widget.TextView
+import androidx.appcompat.app.AppCompatActivity
+import androidx.core.content.ContextCompat
+import kotlinx.android.synthetic.main.activity_quiz_questions.*
+
+class QuizQuestionsActivity : AppCompatActivity() , View.OnClickListener{
+
+ private var mCurrentPosition:Int = 1 //used for assigning the current question
+ private var mQuestionsList: ArrayList? = null
+ private var mSelectedOptionPosition: Int = 0 //used for selecting the position of option
+ private var mCorrectAnswers : Int = 0 // for your score :)
+ private var mUserName : String? = null
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_quiz_questions)
+
+ mUserName = intent.getStringExtra(Constants.USER_NAME)
+
+ mQuestionsList = Constants.getQuestions()
+
+ setQuestion()
+
+ tv_option_one.setOnClickListener(this)
+ tv_option_two.setOnClickListener(this)
+ tv_option_three.setOnClickListener(this)
+ tv_option_four.setOnClickListener(this)
+ quesubmit.setOnClickListener(this)
+ }
+
+ private fun setQuestion(){
+
+ val question = mQuestionsList!!.get(mCurrentPosition-1)
+ defaultOptionsView()
+
+ if(mCurrentPosition == mQuestionsList!!.size){
+ quesubmit.text == "FINISH"
+ }else{
+ quesubmit.text == "SUBMIT"
+ }
+
+ //set the xml attribute "progress" of progressBar (xml id of progressbar) eqv. to currentPosition..
+ progressBar.progress=mCurrentPosition
+ //the text horizontally right to progressbar
+ tv_progress.text = "$mCurrentPosition" + "/" +progressBar.max
+ //set the question text
+ tv_question.text = question!!.question
+ //set the image of question
+ iv_image.setImageResource(question.image)
+ //set the options one by one
+ tv_option_one.text = question.optionOne
+ tv_option_two.text = question.optionTwo
+ tv_option_three.text = question.optionThree
+ tv_option_four.text = question.optionFour
+ }
+
+ private fun defaultOptionsView(){
+ val options = ArrayList()
+
+ options.add(0 , tv_option_one)
+ options.add(1 , tv_option_two)
+ options.add(2 , tv_option_three)
+ options.add(3 , tv_option_four)
+
+ for(option in options){
+ option.setTextColor(Color.parseColor("#7A8089"))
+ option.typeface = Typeface.DEFAULT
+ option.background = ContextCompat.getDrawable(this , R.drawable.default_shape)
+ }
+ }
+
+ override fun onClick(v: View?) {
+ when(v?.id){
+ R.id.tv_option_one -> {
+ selectedOptionView(tv_option_one , 1)
+ }
+ R.id.tv_option_two -> {
+ selectedOptionView(tv_option_two , 2)
+ }
+ R.id.tv_option_three -> {
+ selectedOptionView(tv_option_three , 3)
+ }
+ R.id.tv_option_four -> {
+ selectedOptionView(tv_option_four , 4)
+ }
+ R.id.quesubmit -> {
+ if(mSelectedOptionPosition==0){
+ mCurrentPosition++
+ }
+ when{
+ mCurrentPosition <= mQuestionsList!!.size->
+ {
+ setQuestion()
+ }
+ else->{
+ val intent = Intent(this , ResultActivity::class.java)
+ intent.putExtra(Constants.USER_NAME , mUserName)
+ intent.putExtra(Constants.CORRECT_ANSWERS , mCorrectAnswers)
+ intent.putExtra(Constants.TOTAL_QUESTIONS , mQuestionsList!!.size)
+ startActivity(intent)
+ finish()
+ }
+
+ }
+ }
+ else->{
+ val question = mQuestionsList?.get(mCurrentPosition-1)
+ if(question!!.correctAnswer != mSelectedOptionPosition){
+ answerCorrectView(mSelectedOptionPosition , R.drawable.wrong_option_border)
+ }
+ else{
+ mCorrectAnswers++
+ }
+ answerCorrectView(mSelectedOptionPosition , R.drawable.correct_option_border)
+
+ if(mCurrentPosition == mQuestionsList!!.size){
+ quesubmit.text == "FINISH"
+ }else{
+ quesubmit.text == "GO TO NEXT QUESTION"
+ }
+ mSelectedOptionPosition = 0
+ }
+}
+ }
+
+ private fun answerCorrectView(answer :Int , drawableView :Int){
+ when(answer){
+ 1 -> {
+ tv_option_one.background = ContextCompat.getDrawable(
+ this , drawableView
+ )
+ }
+ 2 -> {
+ tv_option_two.background = ContextCompat.getDrawable(
+ this , drawableView
+ )
+ }
+ 3 -> {
+ tv_option_three.background = ContextCompat.getDrawable(
+ this , drawableView
+ )
+ } 4 -> {
+ tv_option_four.background = ContextCompat.getDrawable(
+ this , drawableView
+ )
+ }
+ }
+ }
+
+ private fun selectedOptionView(tv: TextView , selectedOptionNum : Int){
+ defaultOptionsView()
+ mSelectedOptionPosition = selectedOptionNum
+
+ tv.setTextColor(Color.parseColor("#363A43"))
+ tv.setTypeface(tv.typeface , Typeface.BOLD)
+ tv.background = ContextCompat.getDrawable(this , R.drawable.selected_option_border)
+ }
+
+}
\ No newline at end of file
diff --git a/Quizime/app/src/main/java/com/example/quizime/ResultActivity.kt b/Quizime/app/src/main/java/com/example/quizime/ResultActivity.kt
new file mode 100644
index 0000000..bd9bc6f
--- /dev/null
+++ b/Quizime/app/src/main/java/com/example/quizime/ResultActivity.kt
@@ -0,0 +1,27 @@
+package com.example.quizime
+
+import android.content.Intent
+import android.os.Bundle
+import android.view.View
+import androidx.appcompat.app.AppCompatActivity
+import kotlinx.android.synthetic.main.activity_result.*
+
+class ResultActivity : AppCompatActivity() {
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_result)
+ window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_FULLSCREEN
+
+ val username = intent.getStringExtra(Constants.USER_NAME)
+ tv_username.text = username
+ val totalQuestions = intent.getIntExtra(Constants.TOTAL_QUESTIONS , 0)
+ val correctAnswers = intent.getIntExtra(Constants.CORRECT_ANSWERS , 0)
+
+ tv_score.text = "Your score is $correctAnswers out of $totalQuestions"
+
+ btn_finish.setOnClickListener(){
+ startActivity(Intent(this , MainActivity::class.java))
+ finish()
+ }
+ }
+}
\ No newline at end of file
diff --git a/Quizime/app/src/main/res/drawable-v24/animebg.jpg b/Quizime/app/src/main/res/drawable-v24/animebg.jpg
new file mode 100644
index 0000000..c272d6c
Binary files /dev/null and b/Quizime/app/src/main/res/drawable-v24/animebg.jpg differ
diff --git a/Quizime/app/src/main/res/drawable-v24/animebg2.jpg b/Quizime/app/src/main/res/drawable-v24/animebg2.jpg
new file mode 100644
index 0000000..2bf07af
Binary files /dev/null and b/Quizime/app/src/main/res/drawable-v24/animebg2.jpg differ
diff --git a/Quizime/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/Quizime/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
new file mode 100644
index 0000000..2b068d1
--- /dev/null
+++ b/Quizime/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/app/src/main/res/drawable-v24/ic_trophy.png b/Quizime/app/src/main/res/drawable-v24/ic_trophy.png
new file mode 100644
index 0000000..4353286
Binary files /dev/null and b/Quizime/app/src/main/res/drawable-v24/ic_trophy.png differ
diff --git a/Quizime/app/src/main/res/drawable-v24/img_1.jpg b/Quizime/app/src/main/res/drawable-v24/img_1.jpg
new file mode 100644
index 0000000..33af29d
Binary files /dev/null and b/Quizime/app/src/main/res/drawable-v24/img_1.jpg differ
diff --git a/Quizime/app/src/main/res/drawable-v24/img_10.jpg b/Quizime/app/src/main/res/drawable-v24/img_10.jpg
new file mode 100644
index 0000000..e86e13e
Binary files /dev/null and b/Quizime/app/src/main/res/drawable-v24/img_10.jpg differ
diff --git a/Quizime/app/src/main/res/drawable-v24/img_2.jpg b/Quizime/app/src/main/res/drawable-v24/img_2.jpg
new file mode 100644
index 0000000..e5b2cd0
Binary files /dev/null and b/Quizime/app/src/main/res/drawable-v24/img_2.jpg differ
diff --git a/Quizime/app/src/main/res/drawable-v24/img_3.jpg b/Quizime/app/src/main/res/drawable-v24/img_3.jpg
new file mode 100644
index 0000000..b5bd2a5
Binary files /dev/null and b/Quizime/app/src/main/res/drawable-v24/img_3.jpg differ
diff --git a/Quizime/app/src/main/res/drawable-v24/img_4.jpg b/Quizime/app/src/main/res/drawable-v24/img_4.jpg
new file mode 100644
index 0000000..56547dc
Binary files /dev/null and b/Quizime/app/src/main/res/drawable-v24/img_4.jpg differ
diff --git a/Quizime/app/src/main/res/drawable-v24/img_5.jpg b/Quizime/app/src/main/res/drawable-v24/img_5.jpg
new file mode 100644
index 0000000..02a145e
Binary files /dev/null and b/Quizime/app/src/main/res/drawable-v24/img_5.jpg differ
diff --git a/Quizime/app/src/main/res/drawable-v24/img_6.jpg b/Quizime/app/src/main/res/drawable-v24/img_6.jpg
new file mode 100644
index 0000000..dc89596
Binary files /dev/null and b/Quizime/app/src/main/res/drawable-v24/img_6.jpg differ
diff --git a/Quizime/app/src/main/res/drawable-v24/img_7.jpg b/Quizime/app/src/main/res/drawable-v24/img_7.jpg
new file mode 100644
index 0000000..b522a52
Binary files /dev/null and b/Quizime/app/src/main/res/drawable-v24/img_7.jpg differ
diff --git a/Quizime/app/src/main/res/drawable-v24/img_9.jpg b/Quizime/app/src/main/res/drawable-v24/img_9.jpg
new file mode 100644
index 0000000..fe7e5d6
Binary files /dev/null and b/Quizime/app/src/main/res/drawable-v24/img_9.jpg differ
diff --git a/Quizime/app/src/main/res/drawable-v24/realdeal.png b/Quizime/app/src/main/res/drawable-v24/realdeal.png
new file mode 100644
index 0000000..ec56674
Binary files /dev/null and b/Quizime/app/src/main/res/drawable-v24/realdeal.png differ
diff --git a/Quizime/app/src/main/res/drawable/correct_option_border.xml b/Quizime/app/src/main/res/drawable/correct_option_border.xml
new file mode 100644
index 0000000..feec55c
--- /dev/null
+++ b/Quizime/app/src/main/res/drawable/correct_option_border.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/app/src/main/res/drawable/default_shape.xml b/Quizime/app/src/main/res/drawable/default_shape.xml
new file mode 100644
index 0000000..621ddae
--- /dev/null
+++ b/Quizime/app/src/main/res/drawable/default_shape.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/app/src/main/res/drawable/ic_launcher_background.xml b/Quizime/app/src/main/res/drawable/ic_launcher_background.xml
new file mode 100644
index 0000000..07d5da9
--- /dev/null
+++ b/Quizime/app/src/main/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Quizime/app/src/main/res/drawable/selected_option_border.xml b/Quizime/app/src/main/res/drawable/selected_option_border.xml
new file mode 100644
index 0000000..b39fb35
--- /dev/null
+++ b/Quizime/app/src/main/res/drawable/selected_option_border.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/app/src/main/res/drawable/wrong_option_border.xml b/Quizime/app/src/main/res/drawable/wrong_option_border.xml
new file mode 100644
index 0000000..1753cad
--- /dev/null
+++ b/Quizime/app/src/main/res/drawable/wrong_option_border.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/app/src/main/res/layout/activity_main.xml b/Quizime/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..3fecd11
--- /dev/null
+++ b/Quizime/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/app/src/main/res/layout/activity_quiz_questions.xml b/Quizime/app/src/main/res/layout/activity_quiz_questions.xml
new file mode 100644
index 0000000..3dbd48f
--- /dev/null
+++ b/Quizime/app/src/main/res/layout/activity_quiz_questions.xml
@@ -0,0 +1,122 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/app/src/main/res/layout/activity_result.xml b/Quizime/app/src/main/res/layout/activity_result.xml
new file mode 100644
index 0000000..2447427
--- /dev/null
+++ b/Quizime/app/src/main/res/layout/activity_result.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/Quizime/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 0000000..eca70cf
--- /dev/null
+++ b/Quizime/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/Quizime/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 0000000..eca70cf
--- /dev/null
+++ b/Quizime/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/app/src/main/res/mipmap-hdpi/ic_launcher.png b/Quizime/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..a571e60
Binary files /dev/null and b/Quizime/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/Quizime/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/Quizime/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
new file mode 100644
index 0000000..61da551
Binary files /dev/null and b/Quizime/app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ
diff --git a/Quizime/app/src/main/res/mipmap-mdpi/ic_launcher.png b/Quizime/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..c41dd28
Binary files /dev/null and b/Quizime/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/Quizime/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/Quizime/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
new file mode 100644
index 0000000..db5080a
Binary files /dev/null and b/Quizime/app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ
diff --git a/Quizime/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/Quizime/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..6dba46d
Binary files /dev/null and b/Quizime/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/Quizime/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/Quizime/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..da31a87
Binary files /dev/null and b/Quizime/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ
diff --git a/Quizime/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/Quizime/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..15ac681
Binary files /dev/null and b/Quizime/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/Quizime/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/Quizime/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..b216f2d
Binary files /dev/null and b/Quizime/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ
diff --git a/Quizime/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/Quizime/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..f25a419
Binary files /dev/null and b/Quizime/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/Quizime/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/Quizime/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..e96783c
Binary files /dev/null and b/Quizime/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ
diff --git a/Quizime/app/src/main/res/values-night/themes.xml b/Quizime/app/src/main/res/values-night/themes.xml
new file mode 100644
index 0000000..235ee11
--- /dev/null
+++ b/Quizime/app/src/main/res/values-night/themes.xml
@@ -0,0 +1,16 @@
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/app/src/main/res/values/colors.xml b/Quizime/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000..0bfd2d2
--- /dev/null
+++ b/Quizime/app/src/main/res/values/colors.xml
@@ -0,0 +1,12 @@
+
+
+ #FFBB86FC
+ #FF6200EE
+ #FF3700B3
+ #FF03DAC5
+ #FF018786
+ #FF000000
+ #FFFFFFFF
+ #FFAD54
+ #3A51E4
+
\ No newline at end of file
diff --git a/Quizime/app/src/main/res/values/strings.xml b/Quizime/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000..070b8a5
--- /dev/null
+++ b/Quizime/app/src/main/res/values/strings.xml
@@ -0,0 +1,6 @@
+
+ Quizime
+ Quizime
+ Please enter your name
+ Welcome
+
\ No newline at end of file
diff --git a/Quizime/app/src/main/res/values/themes.xml b/Quizime/app/src/main/res/values/themes.xml
new file mode 100644
index 0000000..bb6b024
--- /dev/null
+++ b/Quizime/app/src/main/res/values/themes.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Quizime/app/src/test/java/com/example/quizime/ExampleUnitTest.kt b/Quizime/app/src/test/java/com/example/quizime/ExampleUnitTest.kt
new file mode 100644
index 0000000..7adc848
--- /dev/null
+++ b/Quizime/app/src/test/java/com/example/quizime/ExampleUnitTest.kt
@@ -0,0 +1,17 @@
+package com.example.quizime
+
+import org.junit.Test
+
+import org.junit.Assert.*
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+class ExampleUnitTest {
+ @Test
+ fun addition_isCorrect() {
+ assertEquals(4, 2 + 2)
+ }
+}
\ No newline at end of file
diff --git a/Quizime/build.gradle b/Quizime/build.gradle
new file mode 100644
index 0000000..e0dc4aa
--- /dev/null
+++ b/Quizime/build.gradle
@@ -0,0 +1,27 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+buildscript {
+ ext.kotlin_version = "1.5.21"
+ repositories {
+ google()
+ mavenCentral()
+ }
+ dependencies {
+ classpath "com.android.tools.build:gradle:4.2.2"
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+allprojects {
+ repositories {
+ google()
+ mavenCentral()
+ jcenter() // Warning: this repository is going to shut down soon
+ }
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}
\ No newline at end of file
diff --git a/Quizime/gradle.properties b/Quizime/gradle.properties
new file mode 100644
index 0000000..2521752
--- /dev/null
+++ b/Quizime/gradle.properties
@@ -0,0 +1,19 @@
+# Project-wide Gradle settings.
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
+# AndroidX package structure to make it clearer which packages are bundled with the
+# Android operating system, and which are packaged with your app"s APK
+# https://developer.android.com/topic/libraries/support-library/androidx-rn
+android.useAndroidX=true
+# Kotlin code style for this project: "official" or "obsolete":
+kotlin.code.style=official
\ No newline at end of file
diff --git a/Quizime/gradle/wrapper/gradle-wrapper.jar b/Quizime/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..f6b961f
Binary files /dev/null and b/Quizime/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/Quizime/gradle/wrapper/gradle-wrapper.properties b/Quizime/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..9fdbc1c
--- /dev/null
+++ b/Quizime/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Fri Aug 13 11:17:03 PDT 2021
+distributionBase=GRADLE_USER_HOME
+distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
+distributionPath=wrapper/dists
+zipStorePath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
diff --git a/Quizime/gradlew b/Quizime/gradlew
new file mode 100644
index 0000000..cccdd3d
--- /dev/null
+++ b/Quizime/gradlew
@@ -0,0 +1,172 @@
+#!/usr/bin/env sh
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=$(save "$@")
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+
+# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
+if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
+ cd "$(dirname "$0")"
+fi
+
+exec "$JAVACMD" "$@"
diff --git a/Quizime/gradlew.bat b/Quizime/gradlew.bat
new file mode 100644
index 0000000..f955316
--- /dev/null
+++ b/Quizime/gradlew.bat
@@ -0,0 +1,84 @@
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS=
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto init
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto init
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:init
+@rem Get command-line arguments, handling Windows variants
+
+if not "%OS%" == "Windows_NT" goto win9xME_args
+
+:win9xME_args
+@rem Slurp the command line arguments.
+set CMD_LINE_ARGS=
+set _SKIP=2
+
+:win9xME_args_slurp
+if "x%~1" == "x" goto execute
+
+set CMD_LINE_ARGS=%*
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/Quizime/settings.gradle b/Quizime/settings.gradle
new file mode 100644
index 0000000..91ef735
--- /dev/null
+++ b/Quizime/settings.gradle
@@ -0,0 +1,2 @@
+rootProject.name = "Quizime"
+include ':app'
diff --git a/gitattributes b/gitattributes
new file mode 100644
index 0000000..95f90ad
--- /dev/null
+++ b/gitattributes
@@ -0,0 +1,57 @@
+## Unity ##
+
+*.cs diff=csharp text
+*.cginc text
+*.shader text
+
+*.mat merge=unityyamlmerge eol=lf
+*.anim merge=unityyamlmerge eol=lf
+*.unity merge=unityyamlmerge eol=lf
+*.prefab merge=unityyamlmerge eol=lf
+*.physicsMaterial2D merge=unityyamlmerge eol=lf
+*.physicMaterial merge=unityyamlmerge eol=lf
+*.asset merge=unityyamlmerge eol=lf
+*.meta merge=unityyamlmerge eol=lf
+*.controller merge=unityyamlmerge eol=lf
+
+
+## git-lfs ##
+
+#Image
+*.jpg filter=lfs diff=lfs merge=lfs -text
+*.jpeg filter=lfs diff=lfs merge=lfs -text
+*.png filter=lfs diff=lfs merge=lfs -text
+*.gif filter=lfs diff=lfs merge=lfs -text
+*.psd filter=lfs diff=lfs merge=lfs -text
+*.ai filter=lfs diff=lfs merge=lfs -text
+*.tif filter=lfs diff=lfs merge=lfs -text
+
+#Audio
+*.mp3 filter=lfs diff=lfs merge=lfs -text
+*.wav filter=lfs diff=lfs merge=lfs -text
+*.ogg filter=lfs diff=lfs merge=lfs -text
+
+#Video
+*.mp4 filter=lfs diff=lfs merge=lfs -text
+*.mov filter=lfs diff=lfs merge=lfs -text
+
+#3D Object
+*.FBX filter=lfs diff=lfs merge=lfs -text
+*.fbx filter=lfs diff=lfs merge=lfs -text
+*.blend filter=lfs diff=lfs merge=lfs -text
+*.obj filter=lfs diff=lfs merge=lfs -text
+
+#ETC
+*.a filter=lfs diff=lfs merge=lfs -text
+*.exr filter=lfs diff=lfs merge=lfs -text
+*.tga filter=lfs diff=lfs merge=lfs -text
+*.pdf filter=lfs diff=lfs merge=lfs -text
+*.zip filter=lfs diff=lfs merge=lfs -text
+*.dll filter=lfs diff=lfs merge=lfs -text
+*.unitypackage filter=lfs diff=lfs merge=lfs -text
+*.aif filter=lfs diff=lfs merge=lfs -text
+*.ttf filter=lfs diff=lfs merge=lfs -text
+*.rns filter=lfs diff=lfs merge=lfs -text
+*.reason filter=lfs diff=lfs merge=lfs -text
+*.lxo filter=lfs diff=lfs merge=lfs -text
+*.bc filter=lfs diff=lfs merge=lfs -text
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.github/ISSUE_TEMPLATE b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.github/ISSUE_TEMPLATE
new file mode 100644
index 0000000..d9aed04
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.github/ISSUE_TEMPLATE
@@ -0,0 +1,32 @@
+---
+name: Android Basics Unit 3 issue
+about: Report problems with the Android Basics Unit 3 codelabs
+title: 'Android Basics Unit 3 issue:'
+labels: ''
+assignees: ''
+
+---
+
+**URL of codelab**
+
+
+**In which task and step of the codelab can this issue be found?**
+
+
+**Describe the problem**
+
+
+
+
+**Steps to reproduce?**
+1. Go to...
+2. Click on...
+3. See error...
+
+**Versions**
+_Android Studio version:_
+_API version of the emulator:_
+
+
+**Additional information**
+_Include screenshots if they would be useful in clarifying the problem._
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/6.5/fileChanges/last-build.bin b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/6.5/fileChanges/last-build.bin
new file mode 100644
index 0000000..f76dd23
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/6.5/fileChanges/last-build.bin differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/6.5/fileHashes/fileHashes.bin b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/6.5/fileHashes/fileHashes.bin
new file mode 100644
index 0000000..51c6568
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/6.5/fileHashes/fileHashes.bin differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/6.5/fileHashes/fileHashes.lock b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/6.5/fileHashes/fileHashes.lock
new file mode 100644
index 0000000..b8968cf
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/6.5/fileHashes/fileHashes.lock differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/6.5/gc.properties b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/6.5/gc.properties
new file mode 100644
index 0000000..e69de29
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/buildOutputCleanup/buildOutputCleanup.lock
new file mode 100644
index 0000000..1ec3f90
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/buildOutputCleanup/cache.properties b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/buildOutputCleanup/cache.properties
new file mode 100644
index 0000000..687a6a0
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/buildOutputCleanup/cache.properties
@@ -0,0 +1,2 @@
+#Fri Jul 23 00:04:47 PDT 2021
+gradle.version=6.5
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/buildOutputCleanup/outputFiles.bin b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/buildOutputCleanup/outputFiles.bin
new file mode 100644
index 0000000..1da9481
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/buildOutputCleanup/outputFiles.bin differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/checksums/checksums.lock b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/checksums/checksums.lock
new file mode 100644
index 0000000..66b943c
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/checksums/checksums.lock differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/checksums/sha1-checksums.bin b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/checksums/sha1-checksums.bin
new file mode 100644
index 0000000..3075f78
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/checksums/sha1-checksums.bin differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/vcs-1/gc.properties b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.gradle/vcs-1/gc.properties
new file mode 100644
index 0000000..e69de29
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/.gitignore b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/.gitignore
new file mode 100644
index 0000000..26d3352
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/.name b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/.name
new file mode 100644
index 0000000..bc3a272
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/.name
@@ -0,0 +1 @@
+Words
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/assetWizardSettings.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/assetWizardSettings.xml
new file mode 100644
index 0000000..f784aa5
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/assetWizardSettings.xml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/compiler.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/compiler.xml
new file mode 100644
index 0000000..fb7f4a8
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/compiler.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/gradle.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/gradle.xml
new file mode 100644
index 0000000..5cd135a
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/gradle.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/jarRepositories.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/jarRepositories.xml
new file mode 100644
index 0000000..a5f05cd
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/jarRepositories.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_activity_activity_1_0_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_activity_activity_1_0_0_aar.xml
new file mode 100644
index 0000000..04e2587
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_activity_activity_1_0_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_annotation_annotation_1_1_0.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_annotation_annotation_1_1_0.xml
new file mode 100644
index 0000000..b2158ac
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_annotation_annotation_1_1_0.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_annotation_annotation_experimental_1_0_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_annotation_annotation_experimental_1_0_0_aar.xml
new file mode 100644
index 0000000..67da1db
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_annotation_annotation_experimental_1_0_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_appcompat_appcompat_1_2_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_appcompat_appcompat_1_2_0_aar.xml
new file mode 100644
index 0000000..4f5d76c
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_appcompat_appcompat_1_2_0_aar.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_appcompat_appcompat_resources_1_2_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_appcompat_appcompat_resources_1_2_0_aar.xml
new file mode 100644
index 0000000..e79ebb3
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_appcompat_appcompat_resources_1_2_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_arch_core_core_common_2_1_0.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_arch_core_core_common_2_1_0.xml
new file mode 100644
index 0000000..2208415
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_arch_core_core_common_2_1_0.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml
new file mode 100644
index 0000000..6ff8859
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_cardview_cardview_1_0_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_cardview_cardview_1_0_0_aar.xml
new file mode 100644
index 0000000..973fb23
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_cardview_cardview_1_0_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_collection_collection_1_1_0.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_collection_collection_1_1_0.xml
new file mode 100644
index 0000000..eafc05e
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_collection_collection_1_1_0.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_2_0_2_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_2_0_2_aar.xml
new file mode 100644
index 0000000..bc7d360
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_2_0_2_aar.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_solver_2_0_2.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_solver_2_0_2.xml
new file mode 100644
index 0000000..97047f4
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_solver_2_0_2.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_coordinatorlayout_coordinatorlayout_1_1_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_coordinatorlayout_coordinatorlayout_1_1_0_aar.xml
new file mode 100644
index 0000000..369051c
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_coordinatorlayout_coordinatorlayout_1_1_0_aar.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_core_core_1_3_2_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_core_core_1_3_2_aar.xml
new file mode 100644
index 0000000..b38dce7
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_core_core_1_3_2_aar.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_core_core_ktx_1_3_2_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_core_core_ktx_1_3_2_aar.xml
new file mode 100644
index 0000000..1c50249
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_core_core_ktx_1_3_2_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml
new file mode 100644
index 0000000..938b29b
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_customview_customview_1_0_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_customview_customview_1_0_0_aar.xml
new file mode 100644
index 0000000..ebf57fe
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_customview_customview_1_0_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_databinding_viewbinding_4_1_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_databinding_viewbinding_4_1_0_aar.xml
new file mode 100644
index 0000000..eba7fdb
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_databinding_viewbinding_4_1_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_drawerlayout_drawerlayout_1_0_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_drawerlayout_drawerlayout_1_0_0_aar.xml
new file mode 100644
index 0000000..4f04e5d
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_drawerlayout_drawerlayout_1_0_0_aar.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_fragment_fragment_1_1_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_fragment_fragment_1_1_0_aar.xml
new file mode 100644
index 0000000..80872d9
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_fragment_fragment_1_1_0_aar.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml
new file mode 100644
index 0000000..0185988
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_common_2_1_0.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_common_2_1_0.xml
new file mode 100644
index 0000000..9354d44
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_common_2_1_0.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml
new file mode 100644
index 0000000..78eb1a1
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_core_2_0_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_core_2_0_0_aar.xml
new file mode 100644
index 0000000..2487be1
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_core_2_0_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_runtime_2_1_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_runtime_2_1_0_aar.xml
new file mode 100644
index 0000000..312c495
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_runtime_2_1_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_2_1_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_2_1_0_aar.xml
new file mode 100644
index 0000000..51ae304
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_2_1_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_loader_loader_1_0_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_loader_loader_1_0_0_aar.xml
new file mode 100644
index 0000000..54134a4
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_loader_loader_1_0_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_recyclerview_recyclerview_1_1_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_recyclerview_recyclerview_1_1_0_aar.xml
new file mode 100644
index 0000000..b35a451
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_recyclerview_recyclerview_1_1_0_aar.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_savedstate_savedstate_1_0_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_savedstate_savedstate_1_0_0_aar.xml
new file mode 100644
index 0000000..1995001
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_savedstate_savedstate_1_0_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_transition_transition_1_2_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_transition_transition_1_2_0_aar.xml
new file mode 100644
index 0000000..1279d4c
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_transition_transition_1_2_0_aar.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml
new file mode 100644
index 0000000..27c0297
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml
new file mode 100644
index 0000000..bb24ff6
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_versionedparcelable_versionedparcelable_1_1_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_versionedparcelable_versionedparcelable_1_1_0_aar.xml
new file mode 100644
index 0000000..554412b
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_versionedparcelable_versionedparcelable_1_1_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_viewpager2_viewpager2_1_0_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_viewpager2_viewpager2_1_0_0_aar.xml
new file mode 100644
index 0000000..d934150
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_viewpager2_viewpager2_1_0_0_aar.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml
new file mode 100644
index 0000000..11d8646
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__com_google_android_material_material_1_2_1_aar.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__com_google_android_material_material_1_2_1_aar.xml
new file mode 100644
index 0000000..3329bea
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__com_google_android_material_material_1_2_1_aar.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml
new file mode 100644
index 0000000..1fa0fa9
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_3_72.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_3_72.xml
new file mode 100644
index 0000000..cd57d89
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_3_72.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_common_1_3_72.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_common_1_3_72.xml
new file mode 100644
index 0000000..c769fec
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_common_1_3_72.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/misc.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/misc.xml
new file mode 100644
index 0000000..036871e
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/misc.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/modules.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/modules.xml
new file mode 100644
index 0000000..0dc0072
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/modules.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/modules/Words.iml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/modules/Words.iml
new file mode 100644
index 0000000..c34546d
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/modules/Words.iml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/modules/app/Words.app.iml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/modules/app/Words.app.iml
new file mode 100644
index 0000000..5063a0b
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/modules/app/Words.app.iml
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ generateDebugSources
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/runConfigurations.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/runConfigurations.xml
new file mode 100644
index 0000000..797acea
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/.idea/runConfigurations.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/CONTRIBUTING.md b/words app (ABIK course)/android-basics-kotlin-words-app-starter/CONTRIBUTING.md
new file mode 100644
index 0000000..b16a466
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/CONTRIBUTING.md
@@ -0,0 +1,29 @@
+# How to Contribute
+
+We'd love to accept your patches and contributions to this project. There are
+just a few small guidelines you need to follow.
+
+## Contributor License Agreement
+
+Contributions to this project must be accompanied by a Contributor License
+Agreement (CLA). You (or your employer) retain the copyright to your
+contribution; this simply gives us permission to use and redistribute your
+contributions as part of the project. Head over to
+ to see your current agreements on file or
+to sign a new one.
+
+You generally only need to submit a CLA once, so if you've already submitted one
+(even if it was for a different project), you probably don't need to do it
+again.
+
+## Code reviews
+
+All submissions, including submissions by project members, require review. We
+use GitHub pull requests for this purpose. Consult
+[GitHub Help](https://help.github.com/articles/about-pull-requests/) for more
+information on using pull requests.
+
+## Community Guidelines
+
+This project follows
+[Google's Open Source Community Guidelines](https://opensource.google/conduct/).
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/LICENSE b/words app (ABIK course)/android-basics-kotlin-words-app-starter/LICENSE
new file mode 100644
index 0000000..7a4a3ea
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/LICENSE
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/README.md b/words app (ABIK course)/android-basics-kotlin-words-app-starter/README.md
new file mode 100644
index 0000000..e3178d2
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/README.md
@@ -0,0 +1,26 @@
+# Words App
+
+This folder contains the source code for the Words app codelab.
+
+
+# Introduction
+Words app allows you to select a letter and use Intents to navigate to an Activity that
+presents a number of words starting with that letter. Each word can be looked up via a web search.
+
+Words app contains a scrollable list of 26 letters A to Z in a RecyclerView. The orientation
+of the RecyclerView can be changed between a vertical list or a grid of items.
+
+The app demonstrates the use of Intents in two ways:
+* to navigate inside an app by specifying an explicit destination, and,
+* allowing Android to service the Intent using the apps and resources present on the device.
+
+# Pre-requisites
+* Experience with Kotlin syntax.
+* Able to create an Activity.
+* Able to create a RecyclerView and supply it with data.
+
+# Getting Started
+1. Install Android Studio, if you don't already have it.
+2. Download the sample.
+3. Import the sample into Android Studio.
+4. Build and run the sample.
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/.gitignore b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/.gitignore
new file mode 100644
index 0000000..42afabf
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/build.gradle b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/build.gradle
new file mode 100644
index 0000000..489ec98
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/build.gradle
@@ -0,0 +1,62 @@
+/*
+ * Copyright (C) 2020 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+plugins {
+ id 'com.android.application'
+ id 'kotlin-android'
+ id 'kotlin-kapt'
+}
+
+android {
+ compileSdkVersion 30
+ buildToolsVersion "30.0.2"
+
+ defaultConfig {
+ applicationId "com.example.wordsapp"
+ minSdkVersion 19
+ targetSdkVersion 30
+ versionCode 1
+ versionName "1.0"
+
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+
+ kotlinOptions {
+ jvmTarget = '1.8'
+ }
+
+ buildFeatures {
+ viewBinding = true
+ }
+}
+
+dependencies {
+ implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
+ implementation "androidx.core:core-ktx:$core_ktx_version"
+ implementation "androidx.appcompat:appcompat:$appcompat_version"
+ implementation "com.google.android.material:material:$material_version"
+ implementation "androidx.constraintlayout:constraintlayout:$constraintlayout_version"
+}
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/proguard-rules.pro b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/proguard-rules.pro
new file mode 100644
index 0000000..481bb43
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/AndroidManifest.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..de8ddd1
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/AndroidManifest.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/ic_launcher-playstore.png b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/ic_launcher-playstore.png
new file mode 100644
index 0000000..4f51af9
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/ic_launcher-playstore.png differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/java/com/example/wordsapp/DetailActivity.kt b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/java/com/example/wordsapp/DetailActivity.kt
new file mode 100644
index 0000000..2aa1d46
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/java/com/example/wordsapp/DetailActivity.kt
@@ -0,0 +1,58 @@
+/*
+ * Copyright (C) 2020 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.example.wordsapp
+
+import android.os.Bundle
+import androidx.appcompat.app.AppCompatActivity
+import androidx.recyclerview.widget.DividerItemDecoration
+import androidx.recyclerview.widget.LinearLayoutManager
+import com.example.wordsapp.databinding.ActivityDetailBinding
+
+
+class DetailActivity : AppCompatActivity() {
+
+ companion object {
+ const val LETTER = "letter"
+ val SEARCH_PREFIX = "https://www.google.com/search?q="
+ }
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+
+ // Retrieve a binding object that allows you to refer to views by id name
+ // Names are converted from snake case to camel case.
+ // For example, a View with the id word_one is referenced as binding.wordOne
+ val binding = ActivityDetailBinding.inflate(layoutInflater)
+ setContentView(binding.root)
+
+ // Retrieve the LETTER from the Intent extras
+ // intent.extras.getString returns String? (String or null)
+ // so toString() guarantees that the value will be a String
+ val letterId = intent?.extras?.getString(LETTER).toString()
+
+
+ val recyclerView = binding.recyclerView
+ recyclerView.layoutManager = LinearLayoutManager(this)
+ recyclerView.adapter = WordAdapter(letterId, this)
+
+ // Adds a [DividerItemDecoration] between items
+ recyclerView.addItemDecoration(
+ DividerItemDecoration(this, DividerItemDecoration.VERTICAL)
+ )
+
+ title = getString(R.string.detail_prefix) + " " + letterId
+ }
+}
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/java/com/example/wordsapp/LetterAdapter.kt b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/java/com/example/wordsapp/LetterAdapter.kt
new file mode 100644
index 0000000..8486575
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/java/com/example/wordsapp/LetterAdapter.kt
@@ -0,0 +1,96 @@
+/*
+ * Copyright (C) 2020 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.example.wordsapp
+
+import android.content.Intent
+import android.os.Build
+import android.view.LayoutInflater
+import android.view.View
+import android.view.ViewGroup
+import android.view.accessibility.AccessibilityNodeInfo
+import android.widget.Button
+import androidx.annotation.RequiresApi
+import androidx.recyclerview.widget.RecyclerView
+
+/**
+ * Adapter for the [RecyclerView] in [MainActivity].
+ */
+class LetterAdapter :
+ RecyclerView.Adapter() {
+
+ // Generates a [CharRange] from 'A' to 'Z' and converts it to a list
+ private val list = ('A').rangeTo('Z').toList()
+
+ /**
+ * Provides a reference for the views needed to display items in your list.
+ */
+ class LetterViewHolder(val view: View) : RecyclerView.ViewHolder(view) {
+ val button = view.findViewById(R.id.button_item)
+ }
+
+ override fun getItemCount(): Int {
+ return list.size
+ }
+
+ /**
+ * Creates new views with R.layout.item_view as its template
+ */
+ override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): LetterViewHolder {
+ val layout = LayoutInflater
+ .from(parent.context)
+ .inflate(R.layout.item_view, parent, false)
+ // Setup custom accessibility delegate to set the text read
+ layout.accessibilityDelegate = Accessibility
+ return LetterViewHolder(layout)
+ }
+
+ /**
+ * Replaces the content of an existing view with new data
+ */
+ override fun onBindViewHolder(holder: LetterViewHolder, position: Int) {
+ val item = list.get(position)
+ holder.button.text = item.toString()
+ holder.button.setOnClickListener{
+ val context = holder.view.context
+ val intent = Intent(context, DetailActivity::class.java)
+ intent.putExtra(DetailActivity.LETTER , holder.button.text.toString())
+ context.startActivity(intent)
+ }
+ }
+
+ // Setup custom accessibility delegate to set the text read with
+ // an accessibility service
+ companion object Accessibility : View.AccessibilityDelegate() {
+ @RequiresApi(Build.VERSION_CODES.LOLLIPOP)
+ override fun onInitializeAccessibilityNodeInfo(
+ host: View?,
+ info: AccessibilityNodeInfo?
+ ) {
+ super.onInitializeAccessibilityNodeInfo(host, info)
+ // With `null` as the second argument to [AccessibilityAction], the
+ // accessibility service announces "double tap to activate".
+ // If a custom string is provided,
+ // it announces "double tap to ".
+ val customString = host?.context?.getString(R.string.look_up_words)
+ val customClick =
+ AccessibilityNodeInfo.AccessibilityAction(
+ AccessibilityNodeInfo.ACTION_CLICK,
+ customString
+ )
+ info?.addAction(customClick)
+ }
+ }
+}
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/java/com/example/wordsapp/MainActivity.kt b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/java/com/example/wordsapp/MainActivity.kt
new file mode 100644
index 0000000..82921da
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/java/com/example/wordsapp/MainActivity.kt
@@ -0,0 +1,99 @@
+/*
+ * Copyright (C) 2020 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.example.wordsapp
+
+import android.os.Bundle
+import android.view.Menu
+import android.view.MenuItem
+import androidx.appcompat.app.AppCompatActivity
+import androidx.core.content.ContextCompat
+import androidx.recyclerview.widget.GridLayoutManager
+import androidx.recyclerview.widget.LinearLayoutManager
+import androidx.recyclerview.widget.RecyclerView
+import com.example.wordsapp.databinding.ActivityMainBinding
+
+/**
+ * Main Activity and entry point for the app. Displays a RecyclerView of letters.
+ */
+
+class MainActivity : AppCompatActivity() {
+ private lateinit var recyclerView: RecyclerView
+ private var isLinearLayoutManager = true
+
+ private fun chooseLayout() {
+ if (isLinearLayoutManager) {
+ recyclerView.layoutManager = LinearLayoutManager(this)
+ } else {
+ recyclerView.layoutManager = GridLayoutManager(this, 4)
+ }
+ recyclerView.adapter = LetterAdapter()
+ }
+ private fun setIcon(menuItem: MenuItem?) {
+ if (menuItem == null)
+ return
+
+ // Set the drawable for the menu icon based on which LayoutManager is currently in use
+
+ // An if-clause can be used on the right side of an assignment if all paths return a value.
+ // The following code is equivalent to
+ // if (isLinearLayoutManager)
+ // menu.icon = ContextCompat.getDrawable(this, R.drawable.ic_grid_layout)
+ // else menu.icon = ContextCompat.getDrawable(this, R.drawable.ic_linear_layout)
+ menuItem.icon =
+ if (isLinearLayoutManager)
+ ContextCompat.getDrawable(this, R.drawable.ic_grid_layout)
+ else ContextCompat.getDrawable(this, R.drawable.ic_linear_layout)
+ }
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+
+ val binding = ActivityMainBinding.inflate(layoutInflater)
+ setContentView(binding.root)
+
+ recyclerView = binding.recyclerView
+ // Sets the LinearLayoutManager of the recyclerview
+ chooseLayout()
+ }
+ override fun onCreateOptionsMenu(menu: Menu?): Boolean {
+ menuInflater.inflate(R.menu.layout_menu, menu)
+
+ val layoutButton = menu?.findItem(R.id.action_switch_layout)
+ // Calls code to set the icon based on the LinearLayoutManager of the RecyclerView
+ setIcon(layoutButton)
+
+ return true
+ }
+ override fun onOptionsItemSelected(item: MenuItem): Boolean {
+ return when (item.itemId) {
+ R.id.action_switch_layout -> {
+ // Sets isLinearLayoutManager (a Boolean) to the opposite value
+ isLinearLayoutManager = !isLinearLayoutManager
+ // Sets layout and icon
+ chooseLayout()
+ setIcon(item)
+
+ return true
+ }
+ // Otherwise, do nothing and use the core event handling
+
+ // when clauses require that all possible paths be accounted for explicitly,
+ // for instance both the true and false cases if the value is a Boolean,
+ // or an else to catch all unhandled cases.
+ else -> super.onOptionsItemSelected(item)
+ }
+ }
+}
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/java/com/example/wordsapp/WordAdapter.kt b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/java/com/example/wordsapp/WordAdapter.kt
new file mode 100644
index 0000000..c85907b
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/java/com/example/wordsapp/WordAdapter.kt
@@ -0,0 +1,115 @@
+/*
+ * Copyright (C) 2020 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.example.wordsapp
+
+import android.content.Context
+import android.content.Intent
+import android.net.Uri
+import android.os.Build
+import android.view.LayoutInflater
+import android.view.View
+import android.view.ViewGroup
+import android.view.accessibility.AccessibilityNodeInfo
+import android.widget.Button
+import androidx.annotation.RequiresApi
+import androidx.recyclerview.widget.RecyclerView
+
+/**
+ * Adapter for the [RecyclerView] in [DetailActivity].
+ */
+class WordAdapter(private val letterId: String, context: Context) :
+ RecyclerView.Adapter() {
+
+ private val filteredWords: List
+
+ init {
+ // Retrieve the list of words from res/values/arrays.xml
+ val words = context.resources.getStringArray(R.array.words).toList()
+
+ filteredWords = words
+ // Returns items in a collection if the conditional clause is true,
+ // in this case if an item starts with the given letter,
+ // ignoring UPPERCASE or lowercase.
+ .filter { it.startsWith(letterId, ignoreCase = true) }
+ // Returns a collection that it has shuffled in place
+ .shuffled()
+ // Returns the first n items as a [List]
+ .take(5)
+ // Returns a sorted version of that [List]
+ .sorted()
+ }
+
+ class WordViewHolder(val view: View) : RecyclerView.ViewHolder(view) {
+ val button = view.findViewById(R.id.button_item)
+ }
+
+ override fun getItemCount(): Int = filteredWords.size
+
+ /**
+ * Creates new views with R.layout.item_view as its template
+ */
+ override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): WordViewHolder {
+ val layout = LayoutInflater
+ .from(parent.context)
+ .inflate(R.layout.item_view, parent, false)
+
+ // Setup custom accessibility delegate to set the text read
+ layout.accessibilityDelegate = Accessibility
+
+ return WordViewHolder(layout)
+ }
+
+ /**
+ * Replaces the content of an existing view with new data
+ */
+ override fun onBindViewHolder(holder: WordViewHolder, position: Int) {
+
+ val item = filteredWords[position]
+ // Needed to call startActivity
+ val context = holder.view.context
+
+ // Set the text of the WordViewHolder
+ holder.button.text = item
+ holder.button.setOnClickListener {
+ val queryUrl:Uri = Uri.parse("${DetailActivity.SEARCH_PREFIX}${item}")
+ val intent = Intent(Intent.ACTION_VIEW, queryUrl)
+ context.startActivity(intent)
+ }
+
+ }
+ // Setup custom accessibility delegate to set the text read with
+ // an accessibility service
+ companion object Accessibility : View.AccessibilityDelegate() {
+ @RequiresApi(Build.VERSION_CODES.LOLLIPOP)
+ override fun onInitializeAccessibilityNodeInfo(
+ host: View?,
+ info: AccessibilityNodeInfo?
+ ) {
+ super.onInitializeAccessibilityNodeInfo(host, info)
+ // With `null` as the second argument to [AccessibilityAction], the
+ // accessibility service announces "double tap to activate".
+ // If a custom string is provided,
+ // it announces "double tap to ".
+ val customString = host?.context?.getString(R.string.look_up_word)
+ val customClick =
+ AccessibilityNodeInfo.AccessibilityAction(
+ AccessibilityNodeInfo.ACTION_CLICK,
+ customString
+ )
+ info?.addAction(customClick)
+ }
+ }
+}
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/drawable/ic_grid_layout.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/drawable/ic_grid_layout.xml
new file mode 100644
index 0000000..78298cd
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/drawable/ic_grid_layout.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/drawable/ic_launcher_background.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/drawable/ic_launcher_background.xml
new file mode 100644
index 0000000..eec440a
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/drawable/ic_launcher_foreground.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/drawable/ic_launcher_foreground.xml
new file mode 100644
index 0000000..6ebd246
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/drawable/ic_linear_layout.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/drawable/ic_linear_layout.xml
new file mode 100644
index 0000000..9884aeb
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/drawable/ic_linear_layout.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/layout/activity_detail.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/layout/activity_detail.xml
new file mode 100644
index 0000000..67b295a
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/layout/activity_detail.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/layout/activity_main.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..884928d
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/layout/item_view.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/layout/item_view.xml
new file mode 100644
index 0000000..7b9cd8f
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/layout/item_view.xml
@@ -0,0 +1,22 @@
+
+
+
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/menu/layout_menu.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/menu/layout_menu.xml
new file mode 100644
index 0000000..077b872
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/menu/layout_menu.xml
@@ -0,0 +1,7 @@
+
+
+
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 0000000..ef07f00
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 0000000..ef07f00
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-hdpi/ic_launcher.png b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..95d048c
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
new file mode 100644
index 0000000..338c63d
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-mdpi/ic_launcher.png b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..0c40823
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
new file mode 100644
index 0000000..56334c3
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..af49b8d
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..dc1f994
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..0da271e
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..683c276
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..8217ac6
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..c6e8b9e
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values-night/themes.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values-night/themes.xml
new file mode 100644
index 0000000..eec467b
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values-night/themes.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/arrays.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/arrays.xml
new file mode 100644
index 0000000..1903bc5
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/arrays.xml
@@ -0,0 +1,270 @@
+
+
+
+
+ - aargh
+ - about
+ - acidic
+ - acne
+ - acrid
+ - acute
+ - alphabet
+ - anchor
+ - anecdote
+ - animal
+ - automobile
+ - awesome
+ - back
+ - balloon
+ - basket
+ - bench
+ - best
+ - birthday
+ - books
+ - brief
+ - business
+ - buy
+ - camera
+ - catapult
+ - center
+ - children
+ - city
+ - class
+ - click
+ - coffee
+ - comment
+ - company
+ - contact
+ - copyright
+ - creative
+ - data
+ - day
+ - details
+ - development
+ - dine
+ - dream
+ - dusk
+ - each
+ - education
+ - electric
+ - elephant
+ - email
+ - emerald
+ - event
+ - every
+ - family
+ - file
+ - find
+ - first
+ - flair
+ - flight
+ - follow
+ - forum
+ - fox
+ - free
+ - frequent
+ - full
+ - game
+ - general
+ - glass
+ - good
+ - gram
+ - gray
+ - great
+ - green
+ - group
+ - guide
+ - guitar
+ - haircut
+ - health
+ - hearsay
+ - help
+ - here
+ - home
+ - honey
+ - hundred
+ - hurried
+ - ice
+ - icon
+ - inbox
+ - incomplete
+ - information
+ - investment
+ - item
+ - jackal
+ - january
+ - job
+ - join
+ - joke
+ - journal
+ - july
+ - jump
+ - june
+ - kangaroo
+ - keep
+ - keyboard
+ - kind
+ - kingdom
+ - knowledge
+ - known
+ - koala
+ - landscape
+ - last
+ - late
+ - laugh
+ - lemon
+ - letter
+ - lily
+ - link
+ - list
+ - local
+ - long
+ - madeleine
+ - magazine
+ - make
+ - many
+ - marine
+ - maze
+ - meditate
+ - message
+ - momentum
+ - moon
+ - more
+ - most
+ - mountain
+ - music
+ - name
+ - need
+ - negotiate
+ - news
+ - next
+ - night
+ - north
+ - not
+ - now
+ - number
+ - number
+ - oak
+ - octopus
+ - online
+ - only
+ - opposite
+ - order
+ - other
+ - pack
+ - page
+ - painting
+ - people
+ - pillow
+ - pizza
+ - podcast
+ - polar
+ - policy
+ - post
+ - presentation
+ - price
+ - product
+ - public
+ - puppy
+ - puzzle
+ - quality
+ - quantity
+ - query
+ - quest
+ - question
+ - quick
+ - quince
+ - quite
+ - quotation
+ - read
+ - real
+ - recipe
+ - report
+ - research
+ - restaurant
+ - review
+ - revolve
+ - rewind
+ - right
+ - search
+ - secret
+ - see
+ - seed
+ - service
+ - ship
+ - should
+ - site
+ - skill
+ - stargaze
+ - state
+ - style
+ - sunrise
+ - taxi
+ - tidy
+ - time
+ - together
+ - tourist
+ - trailer
+ - travel
+ - truck
+ - under
+ - unicorn
+ - uniform
+ - unique
+ - united
+ - university
+ - uplife
+ - useful
+ - value
+ - various
+ - vase
+ - version
+ - very
+ - video
+ - view
+ - violin
+ - vision
+ - visit
+ - volume
+ - walrus
+ - wander
+ - well
+ - whirlwind
+ - winter
+ - world
+ - would
+ - xanthin
+ - xenial
+ - xenolith
+ - xenon
+ - xiphoid
+ - yacht
+ - year
+ - yield
+ - yoga
+ - yogurt
+ - young
+ - your
+ - zein
+ - zero
+ - zigzag
+ - zine
+ - zone
+ - zoo
+ - zouk
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/colors.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000..d3576b6
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/colors.xml
@@ -0,0 +1,28 @@
+
+
+
+ #FF03DAC5
+ #0097A7
+ #006064
+
+ #62A3FF
+ #1675D1
+ #004A9F
+
+ #FF000000
+ #FFFFFFFF
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/strings.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000..b3e4004
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/strings.xml
@@ -0,0 +1,23 @@
+
+
+
+ Words
+ Words That Start With
+ Switch Layout
+ Look up word in a Browser Search
+ Show Stored Words
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/styles.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..c52a12d
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/styles.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/themes.xml b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/themes.xml
new file mode 100644
index 0000000..d4dac5e
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/app/src/main/res/values/themes.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/build.gradle b/words app (ABIK course)/android-basics-kotlin-words-app-starter/build.gradle
new file mode 100644
index 0000000..7116699
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/build.gradle
@@ -0,0 +1,49 @@
+/*
+ * Copyright (C) 2020 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+buildscript {
+ ext {
+ appcompat_version = "1.2.0"
+ constraintlayout_version = "2.0.2"
+ core_ktx_version = "1.3.2"
+ kotlin_version = "1.3.72"
+ material_version = "1.2.1"
+ nav_version = "2.3.1"
+ }
+ repositories {
+ google()
+ jcenter()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:4.1.0'
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
+ classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+allprojects {
+ repositories {
+ google()
+ jcenter()
+ }
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/code-of-conduct.md b/words app (ABIK course)/android-basics-kotlin-words-app-starter/code-of-conduct.md
new file mode 100644
index 0000000..89b8504
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/code-of-conduct.md
@@ -0,0 +1,93 @@
+# Code of Conduct
+
+## Our Pledge
+
+In the interest of fostering an open and welcoming environment, we as
+contributors and maintainers pledge to making participation in our project and
+our community a harassment-free experience for everyone, regardless of age, body
+size, disability, ethnicity, gender identity and expression, level of
+experience, education, socio-economic status, nationality, personal appearance,
+race, religion, or sexual identity and orientation.
+
+## Our Standards
+
+Examples of behavior that contributes to creating a positive environment
+include:
+
+* Using welcoming and inclusive language
+* Being respectful of differing viewpoints and experiences
+* Gracefully accepting constructive criticism
+* Focusing on what is best for the community
+* Showing empathy towards other community members
+
+Examples of unacceptable behavior by participants include:
+
+* The use of sexualized language or imagery and unwelcome sexual attention or
+ advances
+* Trolling, insulting/derogatory comments, and personal or political attacks
+* Public or private harassment
+* Publishing others' private information, such as a physical or electronic
+ address, without explicit permission
+* Other conduct which could reasonably be considered inappropriate in a
+ professional setting
+
+## Our Responsibilities
+
+Project maintainers are responsible for clarifying the standards of acceptable
+behavior and are expected to take appropriate and fair corrective action in
+response to any instances of unacceptable behavior.
+
+Project maintainers have the right and responsibility to remove, edit, or reject
+comments, commits, code, wiki edits, issues, and other contributions that are
+not aligned to this Code of Conduct, or to ban temporarily or permanently any
+contributor for other behaviors that they deem inappropriate, threatening,
+offensive, or harmful.
+
+## Scope
+
+This Code of Conduct applies both within project spaces and in public spaces
+when an individual is representing the project or its community. Examples of
+representing a project or community include using an official project e-mail
+address, posting via an official social media account, or acting as an appointed
+representative at an online or offline event. Representation of a project may be
+further defined and clarified by project maintainers.
+
+This Code of Conduct also applies outside the project spaces when the Project
+Steward has a reasonable belief that an individual's behavior may have a
+negative impact on the project or its community.
+
+## Conflict Resolution
+
+We do not believe that all conflict is bad; healthy debate and disagreement
+often yield positive results. However, it is never okay to be disrespectful or
+to engage in behavior that violates the project’s code of conduct.
+
+If you see someone violating the code of conduct, you are encouraged to address
+the behavior directly with those involved. Many issues can be resolved quickly
+and easily, and this gives people more control over the outcome of their
+dispute. If you are unable to resolve the matter for any reason, or if the
+behavior is threatening or harassing, report it. We are dedicated to providing
+an environment where participants feel welcome and safe.
+
+Reports should be directed to *Jennie Eldon (jenniee@google.com)*, the
+Project Steward(s) for *Android Basics*. It is the Project Steward’s duty to
+receive and address reported violations of the code of conduct. They will then
+work with a committee consisting of representatives from the Open Source
+Programs Office and the Google Open Source Strategy team. If for any reason you
+are uncomfortable reaching out to the Project Steward, please email
+opensource@google.com.
+
+We will investigate every complaint, but you may not receive a direct response.
+We will use our discretion in determining when and how to follow up on reported
+incidents, which may range from not taking action to permanent expulsion from
+the project and project-sponsored spaces. We will notify the accused of the
+report and provide them an opportunity to discuss it before any action is taken.
+The identity of the reporter will be omitted from the details of the report
+supplied to the accused. In potentially harmful situations, such as ongoing
+harassment or threats to anyone's safety, we may take action without notice.
+
+## Attribution
+
+This Code of Conduct is adapted from the Contributor Covenant, version 1.4,
+available at
+https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradle.properties b/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradle.properties
new file mode 100644
index 0000000..98bed16
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradle.properties
@@ -0,0 +1,21 @@
+# Project-wide Gradle settings.
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
+# AndroidX package structure to make it clearer which packages are bundled with the
+# Android operating system, and which are packaged with your app"s APK
+# https://developer.android.com/topic/libraries/support-library/androidx-rn
+android.useAndroidX=true
+# Automatically convert third-party libraries to use AndroidX
+android.enableJetifier=true
+# Kotlin code style for this project: "official" or "obsolete":
+kotlin.code.style=official
\ No newline at end of file
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradle/wrapper/gradle-wrapper.jar b/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..f6b961f
Binary files /dev/null and b/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradle/wrapper/gradle-wrapper.properties b/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..4f04f62
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Tue Sep 15 13:56:42 PDT 2020
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradlew b/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradlew
new file mode 100644
index 0000000..cccdd3d
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradlew
@@ -0,0 +1,172 @@
+#!/usr/bin/env sh
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=$(save "$@")
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+
+# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
+if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
+ cd "$(dirname "$0")"
+fi
+
+exec "$JAVACMD" "$@"
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradlew.bat b/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradlew.bat
new file mode 100644
index 0000000..f955316
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/gradlew.bat
@@ -0,0 +1,84 @@
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS=
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto init
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto init
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:init
+@rem Get command-line arguments, handling Windows variants
+
+if not "%OS%" == "Windows_NT" goto win9xME_args
+
+:win9xME_args
+@rem Slurp the command line arguments.
+set CMD_LINE_ARGS=
+set _SKIP=2
+
+:win9xME_args_slurp
+if "x%~1" == "x" goto execute
+
+set CMD_LINE_ARGS=%*
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/local.properties b/words app (ABIK course)/android-basics-kotlin-words-app-starter/local.properties
new file mode 100644
index 0000000..a5abb6f
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/local.properties
@@ -0,0 +1,8 @@
+## This file must *NOT* be checked into Version Control Systems,
+# as it contains information specific to your local configuration.
+#
+# Location of the SDK. This is only used by Gradle.
+# For customization when using a Version Control System, please read the
+# header note.
+#Fri Jul 23 00:04:27 PDT 2021
+sdk.dir=C\:\\Users\\hp\\AppData\\Local\\Android\\Sdk
diff --git a/words app (ABIK course)/android-basics-kotlin-words-app-starter/settings.gradle b/words app (ABIK course)/android-basics-kotlin-words-app-starter/settings.gradle
new file mode 100644
index 0000000..6c63046
--- /dev/null
+++ b/words app (ABIK course)/android-basics-kotlin-words-app-starter/settings.gradle
@@ -0,0 +1,2 @@
+include ':app'
+rootProject.name = "Words"
\ No newline at end of file