mirror of
https://github.com/jfoucry/Pilldroid.git
synced 2024-11-17 18:41:37 +01:00
Realign
This commit is contained in:
parent
ef1f3a53e4
commit
f8bcbeb9b7
4 changed files with 8 additions and 7 deletions
|
@ -19,13 +19,13 @@ android {
|
||||||
productFlavors {
|
productFlavors {
|
||||||
}
|
}
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_1_6
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
targetCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
}
|
}
|
||||||
/*dexOptions {
|
/*dexOptions {
|
||||||
incremental false
|
incremental false
|
||||||
}*/
|
}*/
|
||||||
buildToolsVersion = '29.0.2'
|
buildToolsVersion = buildToolsVersion1
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -37,7 +37,7 @@ repositories {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||||||
testImplementation 'junit:junit:4.12'
|
testImplementation 'junit:junit:4.13'
|
||||||
implementation 'com.android.support:appcompat-v7:27.1.1'
|
implementation 'com.android.support:appcompat-v7:27.1.1'
|
||||||
implementation 'com.android.support:recyclerview-v7:27.1.1'
|
implementation 'com.android.support:recyclerview-v7:27.1.1'
|
||||||
implementation 'com.android.support:design:27.1.1'
|
implementation 'com.android.support:design:27.1.1'
|
||||||
|
|
|
@ -20,7 +20,7 @@ class DBHelper extends SQLiteOpenHelper {
|
||||||
private static final int DATABASE_VERSION = 1;
|
private static final int DATABASE_VERSION = 1;
|
||||||
private static String DATABASE_NAME = "ordonnance.db";
|
private static String DATABASE_NAME = "ordonnance.db";
|
||||||
|
|
||||||
private static final String TABLE_DRUG = "drug";
|
private static final String TABLE_DRUG = "drug";
|
||||||
private static final String KEY_ID = "id";
|
private static final String KEY_ID = "id";
|
||||||
private static final String KEY_CIS = "cis";
|
private static final String KEY_CIS = "cis";
|
||||||
private static final String KEY_CIP13 = "cip13";
|
private static final String KEY_CIP13 = "cip13";
|
||||||
|
|
|
@ -9,7 +9,7 @@ buildscript {
|
||||||
google()
|
google()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:3.5.1'
|
classpath 'com.android.tools.build:gradle:3.6.2'
|
||||||
|
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
// in the individual module build.gradle files
|
// in the individual module build.gradle files
|
||||||
|
@ -19,6 +19,7 @@ ext {
|
||||||
compileSdkVersion = '27'
|
compileSdkVersion = '27'
|
||||||
buildToolsVersion = '27.0.1'
|
buildToolsVersion = '27.0.1'
|
||||||
var = '3.4.2'
|
var = '3.4.2'
|
||||||
|
buildToolsVersion1 = '29.0.3'
|
||||||
}
|
}
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
|
|
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,6 +1,6 @@
|
||||||
#Thu Jul 11 18:46:50 CEST 2019
|
#Sun Apr 12 14:00:20 UTC 2020
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
|
||||||
|
|
Loading…
Reference in a new issue