diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..0828879 Binary files /dev/null and b/.DS_Store differ diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/1.png b/1.png new file mode 100644 index 0000000..5ccb7b6 Binary files /dev/null and b/1.png differ diff --git a/2.png b/2.png new file mode 100644 index 0000000..09bdaeb Binary files /dev/null and b/2.png differ diff --git a/3.png b/3.png new file mode 100644 index 0000000..b7c44b9 Binary files /dev/null and b/3.png differ diff --git a/4.png b/4.png new file mode 100644 index 0000000..50a9fc8 Binary files /dev/null and b/4.png differ diff --git a/5.png b/5.png new file mode 100644 index 0000000..1b8e216 Binary files /dev/null and b/5.png differ diff --git a/6.png b/6.png new file mode 100644 index 0000000..60faea9 Binary files /dev/null and b/6.png differ diff --git a/7.png b/7.png new file mode 100644 index 0000000..64d2702 Binary files /dev/null and b/7.png differ diff --git a/Handyman/.gitignore b/Handyman/.gitignore new file mode 100644 index 0000000..aa724b7 --- /dev/null +++ b/Handyman/.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/Handyman/.idea/.gitignore b/Handyman/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/Handyman/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/Handyman/.idea/compiler.xml b/Handyman/.idea/compiler.xml new file mode 100644 index 0000000..61a9130 --- /dev/null +++ b/Handyman/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Handyman/.idea/gradle.xml b/Handyman/.idea/gradle.xml new file mode 100644 index 0000000..b617266 --- /dev/null +++ b/Handyman/.idea/gradle.xml @@ -0,0 +1,23 @@ + + + + + + + \ No newline at end of file diff --git a/Handyman/.idea/jarRepositories.xml b/Handyman/.idea/jarRepositories.xml new file mode 100644 index 0000000..a5f05cd --- /dev/null +++ b/Handyman/.idea/jarRepositories.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Handyman/.idea/misc.xml b/Handyman/.idea/misc.xml new file mode 100644 index 0000000..d5d35ec --- /dev/null +++ b/Handyman/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/Handyman/app/.gitignore b/Handyman/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/Handyman/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/Handyman/app/build.gradle b/Handyman/app/build.gradle new file mode 100644 index 0000000..bcd2b1f --- /dev/null +++ b/Handyman/app/build.gradle @@ -0,0 +1,46 @@ +plugins { + id 'com.android.application' + id 'kotlin-android' +} + +android { + compileSdkVersion 30 + buildToolsVersion "30.0.2" + + defaultConfig { + applicationId "com.example.handyman" + minSdkVersion 16 + 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.3.2' + implementation 'androidx.appcompat:appcompat:1.2.0' + implementation 'com.google.android.material:material:1.2.1' + implementation 'androidx.constraintlayout:constraintlayout:2.0.4' + testImplementation 'junit:junit:4.+' + androidTestImplementation 'androidx.test.ext:junit:1.1.2' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' + implementation 'com.google.android.material:material:1.2.1' +} \ No newline at end of file diff --git a/Handyman/app/proguard-rules.pro b/Handyman/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/Handyman/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/Handyman/app/src/androidTest/java/com/example/handyman/ExampleInstrumentedTest.kt b/Handyman/app/src/androidTest/java/com/example/handyman/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..29f0ece --- /dev/null +++ b/Handyman/app/src/androidTest/java/com/example/handyman/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.example.handyman + +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.handyman", appContext.packageName) + } +} \ No newline at end of file diff --git a/Handyman/app/src/main/AndroidManifest.xml b/Handyman/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..cf787d2 --- /dev/null +++ b/Handyman/app/src/main/AndroidManifest.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Handyman/app/src/main/My_Logo-playstore.png b/Handyman/app/src/main/My_Logo-playstore.png new file mode 100644 index 0000000..fe0fc27 Binary files /dev/null and b/Handyman/app/src/main/My_Logo-playstore.png differ diff --git a/Handyman/app/src/main/java/com/example/handyman/Carisa_info.kt b/Handyman/app/src/main/java/com/example/handyman/Carisa_info.kt new file mode 100644 index 0000000..2610002 --- /dev/null +++ b/Handyman/app/src/main/java/com/example/handyman/Carisa_info.kt @@ -0,0 +1,28 @@ +package com.example.handyman + +import android.content.Intent +import androidx.appcompat.app.AppCompatActivity +import android.os.Bundle +import android.widget.Button +import android.widget.ImageView + +class Carisa_info : AppCompatActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + setContentView(R.layout.activity_carisa_info) + + supportActionBar?.hide() + + val button6 = findViewById(R.id.imageView18) + button6.setOnClickListener{ + val intent = Intent(this, Handyman_info::class.java) + startActivity(intent) + } + + val button8 = findViewById