Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
JunGenius committed Jan 31, 2019
0 parents commit 4dcb8be
Show file tree
Hide file tree
Showing 90 changed files with 4,441 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
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
6 changes: 6 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 49 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions QYlogger/build.gradle
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.
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 = "";
}
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 = "";
}
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 {
}
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 {
}
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 {
}
Loading

0 comments on commit 4dcb8be

Please sign in to comment.