Skip to content

Commit 4fffd66

Browse files
committed
飞书助手v0.0.1
1 parent 4deae07 commit 4fffd66

File tree

106 files changed

+504
-1839
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+504
-1839
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@
1212
/captures
1313
.externalNativeBuild
1414
.idea
15+
/keyStore/anysoft.jks
16+
/app/plugin/

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ apply plugin: 'androidx.navigation.safeargs'
2222
android {
2323
compileSdkVersion 28
2424
defaultConfig {
25-
applicationId "com.sky.xposed.rimet"
25+
applicationId "tk.anysoft.xposed.lark"
2626
minSdkVersion 21
2727
targetSdkVersion 28
2828
versionCode 24
29-
versionName "1.3.4"
29+
versionName "0.0.1"
3030
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
3131
ndk {
3232
abiFilters "armeabi-v7a"//, "arm64-v8a", "x86","arm64-v8a","x86_64"

app/proguard-rules.pro

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
# Serializable
2424
-keepclasseswithmembernames class * implements java.io.Serializable {*;}
2525

26-
-keep class com.sky.xposed.rimet.Main {*;}
27-
-keep class com.sky.xposed.rimet.StringFog
26+
-keep class tk.anysoft.xposed.lark.Main {*;}
27+
-keep class tk.anysoft.xposed.lark.StringFog
2828

2929
-keep class rx.** {*;}
3030
-keep class okhttp3.** {*;}

app/src/androidTest/java/com/sky/xposed/rimet/ExampleInstrumentedTest.java

-26
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
//package tk.anysoft.xposed.lark;
2+
//
3+
//import android.content.Context;
4+
//import android.support.test.InstrumentationRegistry;
5+
//import android.support.test.runner.AndroidJUnit4;
6+
//
7+
//import org.junit.Test;
8+
//import org.junit.runner.RunWith;
9+
//
10+
//import static org.junit.Assert.*;
11+
//
12+
///**
13+
// * Instrumented test, which will execute on an Android device.
14+
// *
15+
// * @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
16+
// */
17+
//@RunWith(AndroidJUnit4.class)
18+
//public class ExampleInstrumentedTest {
19+
// @Test
20+
// public void useAppContext() {
21+
// // Context of the app under test.
22+
// Context appContext = InstrumentationRegistry.getTargetContext();
23+
//
24+
// assertEquals("com.sky.xposed.rimet", appContext.getPackageName());
25+
// }
26+
//}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package tk.anysoft.xposed.lark.plugin.feishu;
2+
3+
4+
public class DingDingHandlerTest {
5+
6+
@Test
7+
8+
}

app/src/main/AndroidManifest.xml

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.sky.xposed.rimet">
3+
xmlns:tools="http://schemas.android.com/tools"
4+
package="tk.anysoft.xposed.lark">
45

56
<application
67
android:name=".App"
@@ -32,19 +33,22 @@
3233

3334
<meta-data
3435
android:name="com.amap.api.v2.apikey"
35-
android:value="3e8b7afb696dbead493fbbdcb75047c9" />
36+
android:value="032c5ee59a67360336aa822806961cdf" />
3637
<meta-data
3738
android:name="xposedmodule"
3839
android:value="true" />
3940
<meta-data
4041
android:name="xposeddescription"
41-
android:value="钉钉工具" />
42+
android:value="飞书工具" />
4243
<meta-data
4344
android:name="xposedminversion"
4445
android:value="54" />
4546

4647
<service android:name="com.amap.api.location.APSService" />
4748
</application>
49+
<uses-permission android:name="android.permission.WRITE_SETTINGS"
50+
tools:ignore="ProtectedPermissions" />
51+
<uses-permission android:name="android.permission.READ_SMS" />
4852
<uses-permission android:name="android.permission.INTERNET" />
4953
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
5054
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

app/src/main/assets/xposed_init

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
com.sky.xposed.rimet.Main
1+
tk.anysoft.xposed.lark.Main

app/src/main/java/com/sky/xposed/rimet/data/config/RimetConfig4618.java

-80
This file was deleted.

app/src/main/java/com/sky/xposed/rimet/data/config/RimetConfig4621.java

-80
This file was deleted.

app/src/main/java/com/sky/xposed/rimet/data/config/RimetConfig4625.java

-80
This file was deleted.

0 commit comments

Comments
 (0)