Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Upgrade this project to more modern Android dependencies. This patch is from Heath Borders on the mailing list. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | upgrade |
Files: | files | file ages | folders |
SHA1: |
6137b7dfd2c7b16882561134ba3e3bdd |
User & Date: | dan 2020-07-02 15:09:39.122 |
Original Comment: | Upgrade this project to more modern Android dependencies. |
Context
2020-07-02
| ||
15:48 | Update build documentation to match previous commit. (Closed-Leaf check-in: 1ca2ebe562 user: dan tags: upgrade) | |
15:09 | Upgrade this project to more modern Android dependencies. This patch is from Heath Borders on the mailing list. (check-in: 6137b7dfd2 user: dan tags: upgrade) | |
15:05 | Upgrade this project to version 3.32.3. (check-in: 060a7b4769 user: dan tags: trunk) | |
Changes
Changes to build.gradle.
1 2 3 4 5 6 7 8 | // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { jcenter() google() } dependencies { | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { jcenter() google() } dependencies { classpath 'com.android.tools.build:gradle:4.0.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { jcenter() google() } } task clean(type: Delete) { delete rootProject.buildDir } |
Changes to gradle.properties.
︙ | ︙ | |||
13 14 15 16 17 18 19 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true | > > | 13 14 15 16 17 18 19 20 21 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true android.enableJetifier=true android.useAndroidX=true |
Changes to gradle/wrapper/gradle-wrapper.properties.
1 2 3 4 5 | #Tue Sep 04 03:46:04 ICT 2018 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists | | | 1 2 3 4 5 6 | #Tue Sep 04 03:46:04 ICT 2018 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-all.zip |
Changes to sqlite3/build.gradle.
1 2 3 | apply plugin: 'com.android.library' android { | | > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | apply plugin: 'com.android.library' android { compileSdkVersion 29 defaultConfig { minSdkVersion 16 targetSdkVersion 29 versionCode 1 versionName "1.0" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } |
︙ | ︙ | |||
28 29 30 31 32 33 34 35 36 37 | //sourceSets.main.jni.srcDirs = [] //disable automatic ndk-build call externalNativeBuild { ndkBuild { path 'src/main/jni/Android.mk' } } } dependencies { | > > > > > | | | | | | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | //sourceSets.main.jni.srcDirs = [] //disable automatic ndk-build call externalNativeBuild { ndkBuild { path 'src/main/jni/Android.mk' } } ndkVersion "21.3.6528147" useLibrary 'android.test.base' // for android.test.AndroidTestCase useLibrary 'android.test.runner' // for android.test.MoreAsserts } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') androidTestImplementation 'androidx.annotation:annotation:1.1.0' androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test:rules:1.2.0' testImplementation 'junit:junit:4.13' } allprojects { repositories { // The order in which you list these repositories matter. google() jcenter() } } |
Changes to sqlite3/src/androidTest/java/org/sqlite/database/SeeTest1.java.
1 2 3 4 5 | package org.sqlite.database; import android.content.Context; import android.database.Cursor; import android.os.AsyncTask; | | < | < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | package org.sqlite.database; import android.content.Context; import android.database.Cursor; import android.os.AsyncTask; import androidx.test.platform.app.InstrumentationRegistry; import androidx.test.ext.junit.runners.AndroidJUnit4; import junit.framework.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.sqlite.database.sqlite.SQLiteConnection; import org.sqlite.database.sqlite.SQLiteDatabase; import org.sqlite.database.sqlite.SQLiteOpenHelper; import java.io.File; import java.io.FileInputStream; import java.util.Arrays; class MyHelper extends SQLiteOpenHelper { public static final String DATABASE_NAME = "mydb.db"; public MyHelper(Context ctx){ super(ctx, "file:" + ctx.getDatabasePath(DATABASE_NAME).getAbsolutePath() + "?key=secret", null, 1); |
︙ | ︙ | |||
71 72 73 74 75 76 77 | } @Before public void setup() throws Exception { System.loadLibrary("sqliteX"); | | | 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | } @Before public void setup() throws Exception { System.loadLibrary("sqliteX"); mContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); // delete any existing database File databaseFile = mContext.getDatabasePath(MyHelper.DATABASE_NAME); databaseFile.mkdirs(); if (databaseFile.exists()) { databaseFile.delete(); } |
︙ | ︙ |
Changes to sqlite3/src/androidTest/java/org/sqlite/database/sqlite_cts/SQLiteStatementTest.java.
︙ | ︙ | |||
14 15 16 17 18 19 20 | * limitations under the License. */ package org.sqlite.database.sqlite_cts; import android.content.ContentValues; | < | | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | * limitations under the License. */ package org.sqlite.database.sqlite_cts; import android.content.ContentValues; import android.database.Cursor; import org.sqlite.database.DatabaseUtils; import org.sqlite.database.SQLException; import org.sqlite.database.sqlite.SQLiteDatabase; import org.sqlite.database.sqlite.SQLiteDoneException; import org.sqlite.database.sqlite.SQLiteStatement; import android.os.ParcelFileDescriptor; import androidx.test.filters.Suppress; import android.test.AndroidTestCase; import android.test.MoreAsserts; import java.io.IOException; import java.io.InputStream; import java.io.File; |
︙ | ︙ |
Changes to sqlite3test/build.gradle.
1 2 3 | apply plugin: 'com.android.application' android { | | | > > > > > | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | apply plugin: 'com.android.application' android { compileSdkVersion 29 defaultConfig { applicationId "org.sqlite.customsqlitetest" minSdkVersion 16 targetSdkVersion 29 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } ndkVersion "21.3.6528147" useLibrary 'android.test.base' // for android.test.AndroidTestCase useLibrary 'android.test.runner' // for android.test.ApplicationTestCase extends AndroidTestCase } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') testImplementation 'junit:junit:4.13' implementation 'androidx.appcompat:appcompat:1.1.0' implementation project(':sqlite3') } |
Changes to sqlite3test/src/main/java/org/sqlite/customsqlitetest/MainActivity.java.
1 2 3 4 5 | package org.sqlite.customsqlitetest; import android.content.Context; import android.database.Cursor; import android.net.Uri; | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | package org.sqlite.customsqlitetest; import android.content.Context; import android.database.Cursor; import android.net.Uri; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.TextView; import org.json.JSONObject; import org.sqlite.database.DatabaseErrorHandler; |
︙ | ︙ |