Skip to content

Commit

Permalink
Version to 0.1.0 for @liquidcore
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwlange committed Feb 7, 2019
1 parent f6354cd commit 0031093
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 22 deletions.
1 change: 0 additions & 1 deletion liquidcore/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@
.externalNativeBuild
Pods/
xcuserdata/
/release
20 changes: 5 additions & 15 deletions liquidcore/node-sqlite3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ android {
minSdkVersion 16
targetSdkVersion 28
versionCode 1
versionName "1.0"
versionName "0.1.0"
setProperty("archivesBaseName", "node-sqlite3")
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
Expand Down Expand Up @@ -40,9 +41,9 @@ dependencies {
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

if (findProject(':LiquidCoreAndroid') != null) {
liquidcore project(path: ':LiquidCoreAndroid', configuration: 'default')
implementation project(':LiquidCoreAndroid')
if (findProject(':LiquidCore') != null) {
liquidcore project(path: ':LiquidCore', configuration: 'default')
implementation project(':LiquidCore')
} else {
liquidcore 'com.github.LiquidPlayer:LiquidCore:0.6.0'
implementation 'com.github.LiquidPlayer:LiquidCore:0.6.0'
Expand Down Expand Up @@ -71,17 +72,6 @@ afterEvaluate {
}
}

// build a jar with source files
task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}

artifacts {
archives sourcesJar
}


apply plugin: 'com.github.dcendents.android-maven'

group='com.github.liquidplayer'
Binary file added liquidcore/release/node-sqlite3-release.aar
Binary file not shown.
4 changes: 2 additions & 2 deletions liquidcore/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include ':node-sqlite3'
include ':LiquidCoreAndroid'
include ':LiquidCore'

project(':LiquidCoreAndroid').projectDir = new File(
project(':LiquidCore').projectDir = new File(
rootProject.projectDir, '../../LiquidCore/LiquidCoreAndroid')
2 changes: 1 addition & 1 deletion node-sqlite3.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "node-sqlite3"
s.version = "0.6.0"
s.version = "0.1.0"
s.summary = "Asynchronous, non-blocking SQLite3 bindings for LiqudCore"

s.description = <<-DESC
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sqlite3",
"name": "@liquidcore/sqlite3",
"description": "Asynchronous, non-blocking SQLite3 bindings",
"version": "4.0.6",
"version": "0.1.0",
"homepage": "http://github.com/mapbox/node-sqlite3",
"author": {
"name": "MapBox",
Expand Down Expand Up @@ -66,7 +66,6 @@
"android-dev": "liquidcore/node-sqlite3",
"ios": {
"name": "node-sqlite3",
"version": "0.6.0",
"specs": "https://github.com/LiquidPlayer/Specs.git"
},
"ios-dev": {
Expand Down

0 comments on commit 0031093

Please sign in to comment.