Closed pishguy closed 7 years ago
Warning:File for type 'com.raizlabs.android.dbflow.config.AppDatabaseAppdb_Database' created in the last round will not be subject to annotation processing.
Warning:File for type 'com.raizlabs.android.dbflow.config.GeneratedDatabaseHolder' created in the last round will not be subject to annotation processing.
These are just warnings produced by the compiler and should be ignored. The code within AppDatabaseAppdb
does not need to be processed by any other APT tools.
A handful of classes generated by DBFlow are pushed to the last round of processing thus allowing other APT tools to generate dbflow table classes without being left out of the other config classes.
this is a warning to be ignored. Its pushed off to last round of processing so we collect everything that gets generated.
@trevjonez whats your meas about: does not need to be processed by any other APT tools. ? i dont have any other APT tools,
@agrosner i'm using android studio and when i try to compile i get this error and it cause of broken compile process. how can i ignore that?
@agrosner @trevjonez BTW did you try to read my full post??? my mean is my bottom of post
DBFlow create corrupted _Table
UserInformation_Table error:
if (index_info != -1 && !cursor.isNull(index_info)) {
model.setInfo(cursor.????????????????????(index_info));
} else {
model.setInfo(null);
}
error is between cursor.
and (index_info));
@tux-world it would appear that you need to provide a type converter for the Info
type. Can you provide the source for the info class?
Could this warning cause problem with dagger2?
No. These classes do not have any annotations on them that requires dagger2 to process them.
On Dec 22, 2016 2:00 AM, "Ayo" notifications@github.com wrote:
Could this warning cause problem with dagger2?
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/Raizlabs/DBFlow/issues/1103#issuecomment-268751457, or mute the thread https://github.com/notifications/unsubscribe-auth/AFIxB8ojQG5P7XMea_0ub7hsssLdByNoks5rKjwXgaJpZM4LKkhZ .
define database:
My model:
Error:
Application class:
FlowManager.init(new FlowConfig.Builder(this).build());
Manifest:
Repositories:
UserInformation_Table error: