Я взял руководство https://blog.mindorks.com/powerful-android-orm-greendao-3-tutorial, чтобы интегрировать greenDAO в свой проект android, я следую всем (или мне так кажется XD), и когда я пытаюсь на своем мобильном телефоне, не создаются таблицы создать файл базы данных, но когда я открываю его с помощью программы просмотра, он ничего мне не показывает.
У меня нет способа проверить в эмуляторе, чтобы увидеть, является ли это проблемой мобильного или какого-либо другого разрешение, которое мне нужно.
Я покину проект, чтобы посмотреть, сможете ли вы мне помочь, большое спасибо.
https://anonfile.com/R6j6J2d5o1/Test_zip
манифест файла
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cafl.test">
<application
android:name="com.cafl.test.AppDbController"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="com.cafl.test.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
проект захвата файла
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.0'
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
модуль захвата файла
apply plugin: 'com.android.application'
apply plugin: 'org.greenrobot.greendao'
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "com.cafl.test"
minSdkVersion 23
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
greendao{
schemaVersion 1
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'org.greenrobot:greendao:3.2.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
DaoMaster и DaoSession, которые он создает для создания проекта
и пока я тестирую, я использую исходную функцию базы данных DaoMaster
mDaoSession = new DaoMaster(
new DaoMaster.DevOpenHelper(this, "greendao_demo.db").getWritableDb()).newSession();
в моей базе данных smathphone
средство просмотра sqlite онлайн пусто
совпадений не найдено