Skip to content
This repository was archived by the owner on Nov 4, 2022. It is now read-only.

Commit 317e9fb

Browse files
committed
updated
1 parent 44d5cb4 commit 317e9fb

File tree

6 files changed

+13
-53
lines changed

6 files changed

+13
-53
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
/build
77
/captures
88
/.idea
9+
[Bb]uild
910

1011
*.iml
1112
stylar/stylar.gpg

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ buildscript {
1515
classpath 'com.android.tools.build:gradle:4.0.1'
1616
classpath 'com.google.gms:google-services:4.3.4'
1717
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
18-
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
18+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
1919
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2020
classpath 'com.github.akarnokd:ixjava:1.0.0'
2121
classpath 'commons-io:commons-io:2.6'
@@ -43,6 +43,7 @@ ext {
4343
targetSdkVersion = 30
4444
versionCode = 1
4545
versionName = "1.0.0"
46+
ndk = "21.3.6528147"
4647

4748
ANNOTATIONS = 'org.jetbrains:annotations-java5:17.0.0'
4849

sample/build.gradle

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -37,28 +37,10 @@ configurations.all {
3737

3838
dependencies {
3939
implementation fileTree(dir: "libs", include: ["*.jar"])
40+
implementation project(':stylar')
4041

41-
implementation 'androidx.annotation:annotation:1.1.0'
4242
implementation 'androidx.appcompat:appcompat:1.2.0'
43-
implementation 'androidx.browser:browser:1.2.0'
44-
implementation 'androidx.cardview:cardview:1.0.0'
45-
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
46-
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.1.0'
47-
implementation 'androidx.core:core:1.3.1'
48-
implementation 'androidx.exifinterface:exifinterface:1.3.0'
49-
implementation 'androidx.annotation:annotation-experimental:1.0.0'
50-
implementation 'androidx.fragment:fragment:1.2.5'
51-
implementation 'androidx.lifecycle:lifecycle-runtime:2.2.0'
52-
implementation 'androidx.recyclerview:recyclerview:1.1.0'
53-
implementation 'androidx.recyclerview:recyclerview-selection:1.0.0'
54-
implementation 'androidx.transition:transition:1.4.0-beta01'
55-
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
56-
implementation 'androidx.viewpager2:viewpager2:1.0.0'
57-
5843
implementation 'com.atlassian.commonmark:commonmark:0.13.0'
59-
6044
implementation 'com.github.bumptech.glide:glide:4.11.0'
6145

62-
implementation project(':stylar')
63-
6446
}

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
rootProject.name = 'StylarLib'
2-
include ':stylar'
32

3+
include ':stylar'
44
include ':sample'

stylar/build.gradle

Lines changed: 6 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ android {
99
targetSdkVersion rootProject.ext.targetSdkVersion
1010
versionCode rootProject.ext.versionCode
1111
versionName rootProject.ext.versionName
12-
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
13-
1412
}
1513
buildTypes {
1614
release {
@@ -35,24 +33,8 @@ configurations.all {
3533
dependencies {
3634
implementation fileTree(dir: 'libs', include: ['*.jar'])
3735

38-
implementation 'androidx.annotation:annotation:1.1.0'
39-
implementation 'androidx.appcompat:appcompat:1.2.0'
40-
implementation 'androidx.browser:browser:1.2.0'
41-
implementation 'androidx.cardview:cardview:1.0.0'
42-
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
43-
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.1.0'
44-
implementation 'androidx.core:core:1.3.1'
45-
implementation 'androidx.exifinterface:exifinterface:1.3.0'
46-
implementation 'androidx.annotation:annotation-experimental:1.0.0'
47-
implementation 'androidx.fragment:fragment:1.2.5'
48-
implementation 'androidx.lifecycle:lifecycle-runtime:2.2.0'
49-
implementation 'androidx.recyclerview:recyclerview:1.1.0'
50-
implementation 'androidx.recyclerview:recyclerview-selection:1.0.0'
51-
implementation 'androidx.transition:transition:1.4.0-beta01'
52-
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
53-
implementation 'androidx.viewpager2:viewpager2:1.0.0'
54-
55-
implementation 'ru.noties:jlatexmath-android:0.2.0'
36+
implementation 'com.zeoflow:zson:1.2.1'
37+
implementation 'com.zeoflow:material-elements:2.1.0'
5638

5739
implementation 'io.coil-kt:coil:0.12.0'
5840
implementation 'io.coil-kt:coil-base:0.12.0'
@@ -65,25 +47,17 @@ dependencies {
6547
implementation 'com.atlassian.commonmark:commonmark-ext-gfm-strikethrough:0.13.0'
6648
implementation 'com.atlassian.commonmark:commonmark-ext-gfm-tables:0.13.0'
6749

68-
implementation 'junit:junit:4.13'
69-
70-
implementation 'com.github.akarnokd:ixjava:1.0.0'
7150

7251
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.20'
52+
implementation 'ru.noties:jlatexmath-android:0.2.0'
53+
implementation 'junit:junit:4.13'
54+
implementation 'com.github.akarnokd:ixjava:1.0.0'
7355
implementation 'com.caverock:androidsvg:1.4'
74-
75-
implementation 'com.squareup.okhttp3:okhttp:4.7.2'
76-
56+
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
7757
implementation 'com.github.akarnokd:ixjava:1.0.0'
78-
79-
implementation 'com.zeoflow:zson:1.0.0'
80-
8158
implementation 'commons-io:commons-io:2.6'
82-
8359
implementation 'org.jetbrains:annotations-java5:17.0.0'
84-
8560
implementation 'com.google.googlejavaformat:google-java-format:1.6'
86-
8761
implementation 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava'
8862

8963
}

stylar/maven-push.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ def getRepositoryPassword() {
4040
}
4141

4242
afterEvaluate { project ->
43+
project.generateDebugBuildConfig.enabled = false
44+
project.generateReleaseBuildConfig.enabled = false
4345
uploadArchives {
4446
repositories {
4547
mavenDeployer {

0 commit comments

Comments
 (0)