diff --git a/Lookify/.gitignore b/Lookify/.gitignore deleted file mode 100644 index 603b140..0000000 --- a/Lookify/.gitignore +++ /dev/null @@ -1,14 +0,0 @@ -*.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 diff --git a/Lookify/.idea/codeStyles/Project.xml b/Lookify/.idea/codeStyles/Project.xml deleted file mode 100644 index 681f41a..0000000 --- a/Lookify/.idea/codeStyles/Project.xml +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - -
- - - - xmlns:android - - ^$ - - - -
-
- - - - xmlns:.* - - ^$ - - - BY_NAME - -
-
- - - - .*:id - - http://schemas.android.com/apk/res/android - - - -
-
- - - - .*:name - - http://schemas.android.com/apk/res/android - - - -
-
- - - - name - - ^$ - - - -
-
- - - - style - - ^$ - - - -
-
- - - - .* - - ^$ - - - BY_NAME - -
-
- - - - .* - - http://schemas.android.com/apk/res/android - - - ANDROID_ATTRIBUTE_ORDER - -
-
- - - - .* - - .* - - - BY_NAME - -
-
-
-
-
-
\ No newline at end of file diff --git a/Lookify/.idea/gradle.xml b/Lookify/.idea/gradle.xml deleted file mode 100644 index d291b3d..0000000 --- a/Lookify/.idea/gradle.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Lookify/.idea/misc.xml b/Lookify/.idea/misc.xml deleted file mode 100644 index 37a7509..0000000 --- a/Lookify/.idea/misc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/Lookify/.idea/runConfigurations.xml b/Lookify/.idea/runConfigurations.xml deleted file mode 100644 index 7f68460..0000000 --- a/Lookify/.idea/runConfigurations.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Lookify/.idea/vcs.xml b/Lookify/.idea/vcs.xml deleted file mode 100644 index 6c0b863..0000000 --- a/Lookify/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Lookify/app/.gitignore b/Lookify/app/.gitignore deleted file mode 100644 index 796b96d..0000000 --- a/Lookify/app/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build diff --git a/Lookify/app/build.gradle b/Lookify/app/build.gradle deleted file mode 100644 index 84df13d..0000000 --- a/Lookify/app/build.gradle +++ /dev/null @@ -1,29 +0,0 @@ -apply plugin: 'com.android.application' - -android { - compileSdkVersion 29 - buildToolsVersion "29.0.2" - defaultConfig { - applicationId "com.example.lookify" - minSdkVersion 15 - targetSdkVersion 29 - versionCode 1 - versionName "1.0" - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" - } - buildTypes { - release { - minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' - } - } -} - -dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'androidx.appcompat:appcompat:1.0.2' - implementation 'androidx.constraintlayout:constraintlayout:1.1.3' - testImplementation 'junit:junit:4.12' - androidTestImplementation 'androidx.test.ext:junit:1.1.0' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' -} diff --git a/Lookify/app/proguard-rules.pro b/Lookify/app/proguard-rules.pro deleted file mode 100644 index f1b4245..0000000 --- a/Lookify/app/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# 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 diff --git a/Lookify/app/src/androidTest/java/com/example/lookify/ExampleInstrumentedTest.java b/Lookify/app/src/androidTest/java/com/example/lookify/ExampleInstrumentedTest.java deleted file mode 100644 index edacef5..0000000 --- a/Lookify/app/src/androidTest/java/com/example/lookify/ExampleInstrumentedTest.java +++ /dev/null @@ -1,27 +0,0 @@ -package com.example.lookify; - -import android.content.Context; - -import androidx.test.platform.app.InstrumentationRegistry; -import androidx.test.ext.junit.runners.AndroidJUnit4; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.*; - -/** - * Instrumented test, which will execute on an Android device. - * - * @see Testing documentation - */ -@RunWith(AndroidJUnit4.class) -public class ExampleInstrumentedTest { - @Test - public void useAppContext() { - // Context of the app under test. - Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); - - assertEquals("com.example.lookify", appContext.getPackageName()); - } -} diff --git a/Lookify/app/src/main/AndroidManifest.xml b/Lookify/app/src/main/AndroidManifest.xml deleted file mode 100644 index c1723a1..0000000 --- a/Lookify/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Lookify/app/src/main/java/com/example/lookify/DisplayMessageActivity.java b/Lookify/app/src/main/java/com/example/lookify/DisplayMessageActivity.java deleted file mode 100644 index 4876d48..0000000 --- a/Lookify/app/src/main/java/com/example/lookify/DisplayMessageActivity.java +++ /dev/null @@ -1,24 +0,0 @@ -package com.example.lookify; - -import androidx.appcompat.app.AppCompatActivity; - -import android.content.Intent; -import android.os.Bundle; -import android.widget.TextView; - -public class DisplayMessageActivity extends AppCompatActivity { - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_display_message); - // Get the Intent that started this activity and extract the string - Intent intent = getIntent(); - String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE); - - // Capture the layout's TextView and set the string as its text - TextView textView = findViewById(R.id.textView); - textView.setText(message); - } - -} diff --git a/Lookify/app/src/main/java/com/example/lookify/MainActivity.java b/Lookify/app/src/main/java/com/example/lookify/MainActivity.java deleted file mode 100644 index 439e67b..0000000 --- a/Lookify/app/src/main/java/com/example/lookify/MainActivity.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.example.lookify; - -import androidx.appcompat.app.AppCompatActivity; - -import android.content.Intent; -import android.os.Bundle; -import android.view.View; -import android.widget.EditText; - -public class MainActivity extends AppCompatActivity { - public static final String EXTRA_MESSAGE = "com.example.myfirstapp.MESSAGE"; - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_main); - } - - /** Called when the user taps the Send button */ - public void sendMessage(View view) { - // Do something in response to button - Intent intent = new Intent(this, DisplayMessageActivity.class); - EditText editText = (EditText) findViewById(R.id.editText); - String message = editText.getText().toString(); - intent.putExtra(EXTRA_MESSAGE, message); - startActivity(intent); - } -} - diff --git a/Lookify/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/Lookify/app/src/main/res/drawable-v24/ic_launcher_foreground.xml deleted file mode 100644 index 1f6bb29..0000000 --- a/Lookify/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - diff --git a/Lookify/app/src/main/res/drawable/ic_launcher_background.xml b/Lookify/app/src/main/res/drawable/ic_launcher_background.xml deleted file mode 100644 index 0d025f9..0000000 --- a/Lookify/app/src/main/res/drawable/ic_launcher_background.xml +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Lookify/app/src/main/res/layout/activity_display_message.xml b/Lookify/app/src/main/res/layout/activity_display_message.xml deleted file mode 100644 index 66da458..0000000 --- a/Lookify/app/src/main/res/layout/activity_display_message.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Lookify/app/src/main/res/layout/activity_main.xml b/Lookify/app/src/main/res/layout/activity_main.xml deleted file mode 100644 index f5ab6f3..0000000 --- a/Lookify/app/src/main/res/layout/activity_main.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - -