-
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
0 parents
commit 4dcb8be
Showing
90 changed files
with
4,441 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
*.iml | ||
.gradle | ||
/local.properties | ||
/.idea/workspace.xml | ||
/.idea/libraries | ||
.DS_Store | ||
/build | ||
/captures | ||
.externalNativeBuild |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
apply plugin: 'com.android.library' | ||
apply plugin: 'com.novoda.bintray-release' | ||
android { | ||
compileSdkVersion 27 | ||
buildToolsVersion "27.0.3" | ||
|
||
defaultConfig { | ||
minSdkVersion 21 | ||
} | ||
|
||
lintOptions { | ||
textReport true | ||
textOutput 'stdout' | ||
} | ||
|
||
testOptions { | ||
unitTests.returnDefaultValues = true | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation "com.android.support:support-annotations:27.1.0" | ||
|
||
testImplementation 'junit:junit:4.12' | ||
testImplementation 'com.google.truth:truth:0.28' | ||
testImplementation 'org.robolectric:robolectric:3.3' | ||
testImplementation 'org.mockito:mockito-core:2.8.9' | ||
testImplementation "org.json:json:20160810" | ||
} | ||
|
||
|
||
publish { | ||
repoName = 'JunGenius' //bintray仓库名 | ||
userOrg ='jungenius0108' //bintray注册的用户名 | ||
groupId = 'com.qj.logger' //compile引用时的第1部分groupId | ||
artifactId = 'QYLogger' //compile引用时的第2部分项目名 | ||
publishVersion = '1.1.0' //compile引用时的第3部分版本号 | ||
desc = 'Logger for Android' | ||
website = 'https://github.com/JunGenius/JYWebServiceImpl' | ||
} |
Binary file not shown.
13 changes: 13 additions & 0 deletions
13
...generated/source/buildConfig/androidTest/debug/com/orhanobut/logger/test/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,13 @@ | ||
/** | ||
* Automatically generated file. DO NOT MODIFY | ||
*/ | ||
package com.orhanobut.logger.test; | ||
|
||
public final class BuildConfig { | ||
public static final boolean DEBUG = Boolean.parseBoolean("true"); | ||
public static final String APPLICATION_ID = "com.orhanobut.logger.test"; | ||
public static final String BUILD_TYPE = "debug"; | ||
public static final String FLAVOR = ""; | ||
public static final int VERSION_CODE = -1; | ||
public static final String VERSION_NAME = ""; | ||
} |
13 changes: 13 additions & 0 deletions
13
QYlogger/build/generated/source/buildConfig/debug/com/orhanobut/logger/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,13 @@ | ||
/** | ||
* Automatically generated file. DO NOT MODIFY | ||
*/ | ||
package com.orhanobut.logger; | ||
|
||
public final class BuildConfig { | ||
public static final boolean DEBUG = Boolean.parseBoolean("true"); | ||
public static final String APPLICATION_ID = "com.orhanobut.logger"; | ||
public static final String BUILD_TYPE = "debug"; | ||
public static final String FLAVOR = ""; | ||
public static final int VERSION_CODE = -1; | ||
public static final String VERSION_NAME = ""; | ||
} |
10 changes: 10 additions & 0 deletions
10
QYlogger/build/generated/source/r/androidTest/debug/com/orhanobut/logger/R.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,10 @@ | ||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | ||
* | ||
* This class was automatically generated by the | ||
* gradle plugin from the resource data it found. It | ||
* should not be modified by hand. | ||
*/ | ||
package com.orhanobut.logger; | ||
|
||
public final class R { | ||
} |
11 changes: 11 additions & 0 deletions
11
QYlogger/build/generated/source/r/androidTest/debug/com/orhanobut/logger/test/R.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,11 @@ | ||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | ||
* | ||
* This class was automatically generated by the | ||
* aapt tool from the resource data it found. It | ||
* should not be modified by hand. | ||
*/ | ||
|
||
package com.orhanobut.logger.test; | ||
|
||
public final class R { | ||
} |
10 changes: 10 additions & 0 deletions
10
QYlogger/build/generated/source/r/debug/com/orhanobut/logger/R.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,10 @@ | ||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | ||
* | ||
* This class was automatically generated by the | ||
* gradle plugin from the resource data it found. It | ||
* should not be modified by hand. | ||
*/ | ||
package com.orhanobut.logger; | ||
|
||
public final class R { | ||
} |
Oops, something went wrong.