Skip to content

Commit 170f772

Browse files
Add upstream Android Bindings snapshot (d49b327e8f)
0 parents  commit 170f772

138 files changed

Lines changed: 272676 additions & 0 deletions

File tree

Some content is hidden

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

Customsqlite.iml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module external.linked.project.id="Customsqlite" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
3+
<component name="FacetManager">
4+
<facet type="java-gradle" name="Java-Gradle">
5+
<configuration>
6+
<option name="BUILD_FOLDER_PATH" value="$MODULE_DIR$/build" />
7+
<option name="BUILDABLE" value="false" />
8+
</configuration>
9+
</facet>
10+
</component>
11+
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
12+
<exclude-output />
13+
<content url="file://$MODULE_DIR$">
14+
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
15+
</content>
16+
<orderEntry type="inheritedJdk" />
17+
<orderEntry type="sourceFolder" forTests="false" />
18+
</component>
19+
</module>

build.gradle

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2+
3+
buildscript {
4+
repositories {
5+
jcenter()
6+
google()
7+
}
8+
dependencies {
9+
classpath 'com.android.tools.build:gradle:4.0.0'
10+
11+
// NOTE: Do not place your application dependencies here; they belong
12+
// in the individual module build.gradle files
13+
}
14+
}
15+
16+
allprojects {
17+
repositories {
18+
jcenter()
19+
google()
20+
}
21+
}
22+
23+
task clean(type: Delete) {
24+
delete rootProject.buildDir
25+
}

gradle.properties

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Project-wide Gradle settings.
2+
3+
# IDE (e.g. Android Studio) users:
4+
# Gradle settings configured through the IDE *will override*
5+
# any settings specified in this file.
6+
7+
# For more details on how to configure your build environment visit
8+
# http://www.gradle.org/docs/current/userguide/build_environment.html
9+
10+
# Specifies the JVM arguments used for the daemon process.
11+
# The setting is particularly useful for tweaking memory settings.
12+
# Default value: -Xmx10248m -XX:MaxPermSize=256m
13+
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14+
15+
# When configured, Gradle will run in incubating parallel mode.
16+
# This option should only be used with decoupled projects. More details, visit
17+
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18+
# org.gradle.parallel=true
19+
20+
android.enableJetifier=true
21+
android.useAndroidX=true

gradle/wrapper/gradle-wrapper.jar

52.4 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Tue Sep 04 03:46:04 ICT 2018
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-all.zip

gradlew

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

gradlew.bat

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

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include ':sqlite3', ':sqlite3test'

sqlite3/build.gradle

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
apply plugin: 'com.android.library'
2+
3+
android {
4+
compileSdkVersion 29
5+
6+
defaultConfig {
7+
minSdkVersion 16
8+
targetSdkVersion 29
9+
versionCode 1
10+
versionName "1.0"
11+
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
12+
}
13+
14+
buildTypes {
15+
release {
16+
minifyEnabled false
17+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18+
}
19+
debug {
20+
minifyEnabled false
21+
debuggable true
22+
jniDebuggable true
23+
ndk {
24+
// Building with NDK_DEBUG=1 for mips crashes the compiler in ndk 14.
25+
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
26+
}
27+
}
28+
}
29+
30+
//sourceSets.main.jni.srcDirs = [] //disable automatic ndk-build call
31+
externalNativeBuild {
32+
ndkBuild {
33+
path 'src/main/jni/Android.mk'
34+
}
35+
}
36+
37+
ndkVersion '21.3.6528147'
38+
39+
useLibrary 'android.test.base' // for android.test.AndroidTestCase
40+
useLibrary 'android.test.runner' // for android.test.MoreAsserts
41+
}
42+
43+
dependencies {
44+
implementation fileTree(include: ['*.jar'], dir: 'libs')
45+
androidTestImplementation 'androidx.annotation:annotation:1.1.0'
46+
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
47+
androidTestImplementation 'androidx.test:rules:1.2.0'
48+
testImplementation 'junit:junit:4.13'
49+
}
50+
51+
allprojects {
52+
repositories {
53+
// The order in which you list these repositories matter.
54+
google()
55+
jcenter()
56+
}
57+
}

0 commit comments

Comments
 (0)