-
Notifications
You must be signed in to change notification settings - Fork 40
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
Showing
95 changed files
with
3,755 additions
and
3,840 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
2 changes: 1 addition & 1 deletion
2
...chtj/example/ExampleInstrumentedTest.java → ...tj/basetools/ExampleInstrumentedTest.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
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
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
56 changes: 28 additions & 28 deletions
56
...a/com/wave_chtj/example/StartPageAty.java → ...ava/com/ichtj/basetools/StartPageAty.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 |
---|---|---|
@@ -1,28 +1,28 @@ | ||
package com.wave_chtj.example; | ||
|
||
import android.os.Bundle; | ||
import androidx.annotation.Nullable; | ||
|
||
import com.alibaba.android.arouter.launcher.ARouter; | ||
import com.wave_chtj.example.base.BaseActivity; | ||
import com.wave_chtj.example.util.PACKAGES; | ||
|
||
/** | ||
* Create on 2019/10/16 | ||
* author chtj | ||
* desc $ 启动页 | ||
*/ | ||
public class StartPageAty extends BaseActivity { | ||
|
||
@Override | ||
protected void onCreate(@Nullable Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
ARouter.getInstance().build(PACKAGES.BASE+BuildConfig.APP_CHOOSE).navigation(); | ||
finish(); | ||
} | ||
|
||
@Override | ||
protected void onDestroy() { | ||
super.onDestroy(); | ||
} | ||
} | ||
package com.ichtj.basetools; | ||
|
||
import android.os.Bundle; | ||
import androidx.annotation.Nullable; | ||
|
||
import com.alibaba.android.arouter.launcher.ARouter; | ||
import com.ichtj.basetools.base.BaseActivity; | ||
import com.ichtj.basetools.util.PACKAGES; | ||
|
||
/** | ||
* Create on 2019/10/16 | ||
* author chtj | ||
* desc $ 启动页 | ||
*/ | ||
public class StartPageAty extends BaseActivity { | ||
|
||
@Override | ||
protected void onCreate(@Nullable Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
ARouter.getInstance().build(PACKAGES.BASE+BuildConfig.APP_CHOOSE).navigation(); | ||
finish(); | ||
} | ||
|
||
@Override | ||
protected void onDestroy() { | ||
super.onDestroy(); | ||
} | ||
} |
Oops, something went wrong.