Skip to content

Commit 0031093

Browse files
committed
Version to 0.1.0 for @liquidcore
1 parent f6354cd commit 0031093

File tree

6 files changed

+10
-22
lines changed

6 files changed

+10
-22
lines changed

liquidcore/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@
1313
.externalNativeBuild
1414
Pods/
1515
xcuserdata/
16-
/release

liquidcore/node-sqlite3/build.gradle

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ android {
66
minSdkVersion 16
77
targetSdkVersion 28
88
versionCode 1
9-
versionName "1.0"
9+
versionName "0.1.0"
10+
setProperty("archivesBaseName", "node-sqlite3")
1011
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1112
externalNativeBuild {
1213
cmake {
@@ -40,9 +41,9 @@ dependencies {
4041
androidTestImplementation 'com.android.support.test:runner:1.0.2'
4142
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
4243

43-
if (findProject(':LiquidCoreAndroid') != null) {
44-
liquidcore project(path: ':LiquidCoreAndroid', configuration: 'default')
45-
implementation project(':LiquidCoreAndroid')
44+
if (findProject(':LiquidCore') != null) {
45+
liquidcore project(path: ':LiquidCore', configuration: 'default')
46+
implementation project(':LiquidCore')
4647
} else {
4748
liquidcore 'com.github.LiquidPlayer:LiquidCore:0.6.0'
4849
implementation 'com.github.LiquidPlayer:LiquidCore:0.6.0'
@@ -71,17 +72,6 @@ afterEvaluate {
7172
}
7273
}
7374

74-
// build a jar with source files
75-
task sourcesJar(type: Jar) {
76-
from android.sourceSets.main.java.srcDirs
77-
classifier = 'sources'
78-
}
79-
80-
artifacts {
81-
archives sourcesJar
82-
}
83-
84-
8575
apply plugin: 'com.github.dcendents.android-maven'
8676

8777
group='com.github.liquidplayer'
266 KB
Binary file not shown.

liquidcore/settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
include ':node-sqlite3'
2-
include ':LiquidCoreAndroid'
2+
include ':LiquidCore'
33

4-
project(':LiquidCoreAndroid').projectDir = new File(
4+
project(':LiquidCore').projectDir = new File(
55
rootProject.projectDir, '../../LiquidCore/LiquidCoreAndroid')

node-sqlite3.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "node-sqlite3"
3-
s.version = "0.6.0"
3+
s.version = "0.1.0"
44
s.summary = "Asynchronous, non-blocking SQLite3 bindings for LiqudCore"
55

66
s.description = <<-DESC

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "sqlite3",
2+
"name": "@liquidcore/sqlite3",
33
"description": "Asynchronous, non-blocking SQLite3 bindings",
4-
"version": "4.0.6",
4+
"version": "0.1.0",
55
"homepage": "http://github.com/mapbox/node-sqlite3",
66
"author": {
77
"name": "MapBox",
@@ -66,7 +66,6 @@
6666
"android-dev": "liquidcore/node-sqlite3",
6767
"ios": {
6868
"name": "node-sqlite3",
69-
"version": "0.6.0",
7069
"specs": "https://github.com/LiquidPlayer/Specs.git"
7170
},
7271
"ios-dev": {

0 commit comments

Comments
 (0)