Skip to content

Commit ff046c3

Browse files
committed
see 07/10 log
1 parent f5cda0e commit ff046c3

File tree

485 files changed

+3166
-1856
lines changed

Some content is hidden

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

485 files changed

+3166
-1856
lines changed

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
*.iml
2-
*__bus__.json
2+
__api__.json
3+
__bus__.json
34
.gradle
4-
/local.properties
5+
local.properties
56
.idea
67
.DS_Store
78
/build
89
/captures
910
.externalNativeBuild
1011
/apk
1112
*.phrof
12-
/busMaven
13+
/maven

CHANGELOG.md

Lines changed: 1 addition & 1 deletion

README-CN.md

Lines changed: 2 additions & 2 deletions

README.md

Lines changed: 2 additions & 2 deletions

app/launcher/app/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
apply {
2+
from "${rootDir.path}/buildApp.gradle"
3+
}
4+
5+
dependencies {
6+
implementation fileTree(dir: 'libs', include: ['*.jar'])
7+
api Config.depConfig.launcher_pkg.dep
8+
}

launcher/app/src/main/AndroidManifest.xml renamed to app/launcher/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
android:theme="@style/AppTheme">
1111

1212
<activity
13-
android:name="com.blankj.launcher.pkg.MainActivity"
13+
android:name="com.blankj.main.pkg.MainActivity"
1414
android:configChanges="orientation|keyboardHidden|screenSize"
1515
android:screenOrientation="user"
1616
android:windowSoftInputMode="stateHidden">
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package com.blankj.launcher.app;
2+
3+
/**
4+
* <pre>
5+
* author: Blankj
6+
* blog : http://blankj.com
7+
* time : 2016/10/12
8+
* desc : app about launcher
9+
* </pre>
10+
*/
11+
public class LauncherApp extends com.blankj.launcher.pkg.LauncherApp {
12+
13+
}
14+
15+

0 commit comments

Comments
 (0)