-
Notifications
You must be signed in to change notification settings - Fork 0
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
4 changed files
with
24 additions
and
3 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
21 changes: 21 additions & 0 deletions
21
tap/core/src/main/java/com/dango/unit/tap/core/BuildConfig.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,21 @@ | ||
package com.dango.unit.tap.core; | ||
|
||
/** | ||
* @author: Dango | ||
* @createTime: 2024/3/14 13:12 | ||
* Description: | ||
* <p> | ||
* Modification History: | ||
* ----------------------------------------------------------------------------------- | ||
*/ | ||
public final class BuildConfig { | ||
public static final boolean DEBUG = true; | ||
public static final String LIBRARY_PACKAGE_NAME = "com.dango.tap.core"; | ||
public static final String BUILD_TYPE = "release"; | ||
public static final String FLAVOR = ""; | ||
public static final int VERSION_CODE = -1; | ||
public static final String VERSION_NAME = ""; | ||
|
||
public BuildConfig() { | ||
} | ||
} |
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