From 440eb8e3a83e14044164d158063f11008afadced Mon Sep 17 00:00:00 2001
From: Aqamirrazavi <96336789+Aqamirrazavi@users.noreply.github.com>
Date: Sat, 4 Jul 2026 14:16:46 +0330
Subject: [PATCH] Delete app directory
---
app/build.gradle | 45 ------------------
app/proguard-rules.pro | 21 ---------
app/src/main/AndroidManifest.xml | 27 -----------
.../com/example/sampleapp/MainActivity.kt | 29 ------------
app/src/main/res/layout/activity_main.xml | 47 -------------------
app/src/main/res/values/colors.xml | 9 ----
app/src/main/res/values/strings.xml | 6 ---
app/src/main/res/values/themes.xml | 9 ----
app/src/main/res/xml/backup_rules.xml | 13 -----
.../main/res/xml/data_extraction_rules.xml | 19 --------
10 files changed, 225 deletions(-)
delete mode 100644 app/build.gradle
delete mode 100644 app/proguard-rules.pro
delete mode 100644 app/src/main/AndroidManifest.xml
delete mode 100644 app/src/main/java/com/example/sampleapp/MainActivity.kt
delete mode 100644 app/src/main/res/layout/activity_main.xml
delete mode 100644 app/src/main/res/values/colors.xml
delete mode 100644 app/src/main/res/values/strings.xml
delete mode 100644 app/src/main/res/values/themes.xml
delete mode 100644 app/src/main/res/xml/backup_rules.xml
delete mode 100644 app/src/main/res/xml/data_extraction_rules.xml
diff --git a/app/build.gradle b/app/build.gradle
deleted file mode 100644
index 035529c1..00000000
--- a/app/build.gradle
+++ /dev/null
@@ -1,45 +0,0 @@
-plugins {
- id 'com.android.application'
- id 'org.jetbrains.kotlin.android'
-}
-
-android {
- namespace 'com.example.sampleapp'
- compileSdk 34
-
- defaultConfig {
- applicationId "com.example.sampleapp"
- minSdk 21
- targetSdk 34
- 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 'androidx.core:core-ktx:1.12.0'
- implementation 'androidx.appcompat:appcompat:1.6.1'
- implementation 'com.google.android.material:material:1.10.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.5'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
-}
\ No newline at end of file
diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro
deleted file mode 100644
index 481bb434..00000000
--- a/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
\ No newline at end of file
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
deleted file mode 100644
index 3be79a09..00000000
--- a/app/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/java/com/example/sampleapp/MainActivity.kt b/app/src/main/java/com/example/sampleapp/MainActivity.kt
deleted file mode 100644
index 25337be0..00000000
--- a/app/src/main/java/com/example/sampleapp/MainActivity.kt
+++ /dev/null
@@ -1,29 +0,0 @@
-package com.example.sampleapp
-
-import androidx.appcompat.app.AppCompatActivity
-import android.os.Bundle
-import android.widget.Button
-import android.widget.TextView
-import android.widget.Toast
-
-class MainActivity : AppCompatActivity() {
- private var clickCount = 0
-
- override fun onCreate(savedInstanceState: Bundle?) {
- super.onCreate(savedInstanceState)
- setContentView(R.layout.activity_main)
-
- val welcomeText = findViewById(R.id.welcomeText)
- val clickButton = findViewById