Skip to content

Commit

Permalink
Merge pull request #19 from GuoXiCheng/dev
Browse files Browse the repository at this point in the history
update
  • Loading branch information
GuoXiCheng committed Aug 31, 2022
2 parents fae024b + 532bde5 commit 31d9a33
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 15 deletions.
1 change: 1 addition & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified apk/SKIP-v1.2.apk
Binary file not shown.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
compileSdk 32

defaultConfig {
applicationId "com.android.oneclick"
applicationId "com.android.skip"
minSdk 24
targetSdk 32
versionCode 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.android.oneclick
package com.android.skip

import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.android.oneclick">
package="com.android.skip">

<application
android:allowBackup="true"
Expand All @@ -14,7 +14,7 @@
android:theme="@style/Theme.OneClick"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:name="com.android.skip.MainActivity"
android:exported="true"
android:label="@string/activity_main"
android:excludeFromRecents="true"
Expand All @@ -27,7 +27,7 @@
</activity>

<service
android:name=".service.MyAccessibilityService"
android:name="com.android.skip.service.MyAccessibilityService"
android:exported="true"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
<intent-filter>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
package com.android.oneclick
package com.android.skip

import android.content.Context
import android.content.Intent
import android.os.Build
import android.os.Bundle
import android.provider.Settings
import android.util.Log
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.compose.animation.AnimatedVisibility
Expand All @@ -29,7 +27,7 @@ import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import com.android.oneclick.ui.theme.*
import com.android.skip.ui.theme.*
import com.google.android.material.dialog.MaterialAlertDialogBuilder

var accessibilityState by mutableStateOf(false)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.android.oneclick
package com.android.skip

enum class Mobile {
XIAOMI, HUAWEI, VIVO, OPPO, ONEPLUS, MEIZU
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.android.oneclick.service
package com.android.skip.service

import android.accessibilityservice.AccessibilityService
import android.accessibilityservice.GestureDescription
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.android.oneclick.ui.theme
package com.android.skip.ui.theme

import androidx.compose.ui.graphics.Color

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.android.oneclick.ui.theme
package com.android.skip.ui.theme

import android.app.Activity
import android.os.Build
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.android.oneclick.ui.theme
package com.android.skip.ui.theme

import androidx.compose.material3.Typography
import androidx.compose.ui.text.TextStyle
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.android.oneclick
package com.android.skip

import org.junit.Test

Expand Down

0 comments on commit 31d9a33

Please sign in to comment.