Skip to content

Commit 7c64a29

Browse files
committed
develop project add module
1 parent 03426a2 commit 7c64a29

File tree

1,021 files changed

+659
-8600
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,021 files changed

+659
-8600
lines changed

.gitignore

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
*.iml
22
.gradle
3-
/local.properties
4-
/.idea/workspace.xml
5-
/.idea/libraries
6-
.DS_Store
7-
/build
8-
/captures
9-
.externalNativeBuild
10-
*.idea/
3+
*local.properties
4+
*build
5+
*.idea

Banner/.gitignore

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
1-
*.iml
2-
.gradle
3-
/local.properties
4-
/.idea/
5-
/build/
6-
/app/build/
1+
/build

Banner/app/build.gradle

Lines changed: 0 additions & 29 deletions
This file was deleted.

Banner/app/proguard-rules.pro

Lines changed: 0 additions & 17 deletions
This file was deleted.

Banner/build.gradle

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
1-
// Top-level build file where you can add configuration options common to all sub-projects/modules.
1+
apply plugin: 'com.android.application'
22

3-
buildscript {
4-
repositories {
5-
jcenter()
6-
}
7-
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.2.3'
9-
10-
// NOTE: Do not place your application dependencies here; they belong
11-
// in the individual module build.gradle files
12-
}
13-
}
14-
15-
allprojects {
16-
repositories {
17-
jcenter()
3+
android {
4+
compileSdkVersion 24
5+
buildToolsVersion "24.0.2"
6+
defaultConfig {
7+
applicationId "github.com.viewpagerdemo"
8+
minSdkVersion 15
9+
targetSdkVersion 24
10+
versionCode 1
11+
versionName "1.0"
1812
}
1913
}
2014

21-
task clean(type: Delete) {
22-
delete rootProject.buildDir
15+
dependencies {
16+
compile fileTree(dir: 'libs', include: ['*.jar'])
17+
compile 'com.android.support:appcompat-v7:24.2.0'
2318
}

Banner/settings.gradle

Lines changed: 0 additions & 1 deletion
This file was deleted.

BiliRecommendUI/.gitignore

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1 @@
1-
*.iml
2-
.gradle
3-
/local.properties
4-
/.idea/workspace.xml
5-
/.idea/libraries
6-
.DS_Store
71
/build
8-
/captures
9-
.externalNativeBuild

BiliRecommendUI/app/build.gradle

Lines changed: 0 additions & 42 deletions
This file was deleted.

BiliRecommendUI/app/proguard-rules.pro

Lines changed: 0 additions & 17 deletions
This file was deleted.

BiliRecommendUI/build.gradle

Lines changed: 29 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,35 @@
1-
// Top-level build file where you can add configuration options common to all sub-projects/modules.
1+
apply plugin: 'com.android.application'
22

3-
buildscript {
4-
repositories {
5-
jcenter()
6-
}
7-
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.2.3'
9-
10-
// NOTE: Do not place your application dependencies here; they belong
11-
// in the individual module build.gradle files
3+
android {
4+
compileSdkVersion 24
5+
buildToolsVersion "24.0.2"
6+
defaultConfig {
7+
applicationId "com.bilirecommendui"
8+
minSdkVersion 15
9+
targetSdkVersion 25
10+
versionCode 1
11+
versionName "1.0"
1212
}
1313
}
14-
15-
allprojects {
16-
repositories {
17-
jcenter()
14+
repositories {
15+
maven {
16+
url "https://jitpack.io"
1817
}
1918
}
20-
21-
task clean(type: Delete) {
22-
delete rootProject.buildDir
19+
dependencies {
20+
compile fileTree(include: ['*.jar'], dir: 'libs')
21+
//noinspection GradleCompatible
22+
compile 'com.android.support:appcompat-v7:25.0.0'
23+
//noinspection GradleCompatible
24+
compile 'com.android.support:design:25.0.0'
25+
//noinspection GradleCompatible
26+
compile 'com.android.support:cardview-v7:25.0.0'
27+
compile 'com.github.bumptech.glide:glide:3.7.0'
28+
compile 'io.reactivex:rxjava:1.1.10'
29+
compile 'io.reactivex:rxandroid:1.2.1'
30+
compile 'com.squareup.retrofit2:retrofit:2.1.0'
31+
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
32+
compile 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
33+
compile 'com.github.ozodrukh:CircularReveal:1.3.1@aar'
34+
compile 'com.ydevelop:bannerlayout:0.0.3'
2335
}

BiliRecommendUI/gradle.properties

Lines changed: 0 additions & 17 deletions
This file was deleted.
-52.4 KB
Binary file not shown.

BiliRecommendUI/gradle/wrapper/gradle-wrapper.properties

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)