Skip to content

Commit 596eed0

Browse files
committed
feat: add jitpack settings
1 parent 73f474b commit 596eed0

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

.idea/dictionaries/rsgames.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,23 @@ buildscript {
66
google()
77
jcenter()
88

9+
mavenCentral()
910
}
1011
dependencies {
1112
classpath 'com.android.tools.build:gradle:3.5.2'
1213
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1314
// NOTE: Do not place your application dependencies here; they belong
1415
// in the individual module build.gradle files
16+
// For jitpack
17+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1518
}
1619
}
1720

1821
allprojects {
1922
repositories {
2023
google()
2124
jcenter()
22-
25+
maven { url "https://jitpack.io" }
2326
}
2427
}
2528

loadingview/build.gradle

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
apply plugin: 'com.android.library'
2+
23
apply plugin: 'kotlin-android'
4+
35
apply plugin: 'kotlin-android-extensions'
6+
7+
apply plugin: 'com.github.dcendents.android-maven'
8+
9+
group='com.github.TimChenDev'
10+
411
android {
512
compileSdkVersion 29
613
buildToolsVersion "29.0.2"
@@ -9,8 +16,8 @@ android {
916
defaultConfig {
1017
minSdkVersion 23
1118
targetSdkVersion 29
12-
versionCode 1
13-
versionName "1.0"
19+
versionCode 110
20+
versionName "1.1.0"
1421

1522
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1623
consumerProguardFiles 'consumer-rules.pro'

0 commit comments

Comments
 (0)