-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f8827a4
commit 020c453
Showing
4 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
interface-buoy-app/src/main/java/com/smartdengg/interfacebuoy/sample/App.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package com.smartdengg.interfacebuoy.sample; | ||
|
||
import android.app.Application; | ||
import com.smartdengg.interfacebuoy.compiler.BuoySettings; | ||
|
||
/** | ||
* 创建时间: 2019/02/18 11:15 <br> | ||
* 作者: SmartDengg <br> | ||
* 描述: | ||
*/ | ||
public class App extends Application { | ||
|
||
@Override public void onCreate() { | ||
super.onCreate(); | ||
BuoySettings.loggable = true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters