Skip to content

Commit

Permalink
Remove unnecessary dependencies and remove the activity.
Browse files Browse the repository at this point in the history
  • Loading branch information
pwh-pwh committed Nov 9, 2023
1 parent 4d056f1 commit 5ce398f
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 106 deletions.
22 changes: 12 additions & 10 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ android {
applicationId = "dev.coderpwh.fuck"
minSdk = 29
targetSdk = 33
versionCode = 1
versionName = "1.0"
versionCode = 2
versionName = "2.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
// testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
Expand Down Expand Up @@ -44,13 +44,15 @@ android {

dependencies {

implementation("androidx.core:core-ktx:1.9.0")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.8.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")
// implementation("androidx.core:core-ktx:1.9.0")
// implementation("androidx.appcompat:appcompat:1.6.1")
// implementation("com.google.android.material:material:1.8.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")

implementation("androidx.annotation:annotation-jvm:1.7.0")

// 基础依赖
implementation("com.highcapable.yukihookapi:api:1.1.11")
Expand Down

This file was deleted.

5 changes: 2 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Fuck_shake"
tools:targetApi="31">

<meta-data
Expand All @@ -29,14 +28,14 @@
android:value="true" />


<activity
<!--<activity
android:name=".MainActivity"
android:exported="true" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</activity>-->
</application>


Expand Down
11 changes: 0 additions & 11 deletions app/src/main/java/dev/coderpwh/fuck/MainActivity.kt

This file was deleted.

9 changes: 0 additions & 9 deletions app/src/main/res/layout/activity_main.xml

This file was deleted.

16 changes: 0 additions & 16 deletions app/src/main/res/values-night/themes.xml

This file was deleted.

16 changes: 0 additions & 16 deletions app/src/main/res/values/themes.xml

This file was deleted.

3 changes: 3 additions & 0 deletions app/src/main/res/values/values.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<resources>

</resources>
17 changes: 0 additions & 17 deletions app/src/test/java/dev/coderpwh/fuck/ExampleUnitTest.kt

This file was deleted.

0 comments on commit 5ce398f

Please sign in to comment.