Skip to content

Loaders and cursors for DBFlow #1091

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 56 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
91326fb
First pass at external foreign key references
hilljh82 Jan 31, 2016
50382fc
Added missing files
hilljh82 Jan 31, 2016
a1ff768
Merge from Raizlabs
hilljh82 Jan 31, 2016
35567d3
Foreign key on primary key failed if column was a model and not a mod…
hilljh82 Feb 3, 2016
a92a9d1
Removed debug code
hilljh82 Feb 3, 2016
de30375
Overrided getSupportedOptions() to handle processor warnings
hilljh82 Feb 3, 2016
bf4b415
Foreign key definition failed with model container
hilljh82 Feb 3, 2016
50e409b
Reverted change
hilljh82 Feb 3, 2016
6dfd5d6
Removed test files
hilljh82 Feb 23, 2016
f3935e1
Merge from raizlabs/develop
hilljh82 Feb 23, 2016
0947f8c
Added missing code for checkNeedsReferences()
hilljh82 Mar 10, 2016
118204a
Removed faulty line of code
hilljh82 Mar 10, 2016
2a450a2
Added missing check for external foreign key
hilljh82 Mar 10, 2016
36b7fa7
Overrided the newInstance() method
hilljh82 Mar 14, 2016
f98ebc2
Merge from Raizlabs/master
hilljh82 Jul 3, 2016
9431b13
Fixed error preventing Jitpack from working
hilljh82 Jul 3, 2016
e483520
Merge from master
hilljh82 Jul 3, 2016
1e05a47
Fixed build errors
hilljh82 Jul 4, 2016
ccdb83b
Fixed build error
hilljh82 Jul 4, 2016
49d3993
Fixed compilation errors
hilljh82 Jul 4, 2016
25403c8
Merge branch 'master' into develop
hilljh82 Jul 4, 2016
e3b8ecb
Switch to AsyncTaskLoader in Android support library
hilljh82 Jul 7, 2016
536a5bb
Added missing dependency
hilljh82 Jul 7, 2016
36b144d
Fixed build issues with API version
hilljh82 Jul 7, 2016
cff3e40
Merge from Raizlabs/develop
hilljh82 Jul 7, 2016
09f1be7
Merge from Raizlabs/master
hilljh82 Jul 7, 2016
956fc1b
Merge branch 'master' into develop
hilljh82 Jul 7, 2016
63fe220
Fixed issues in implementation
hilljh82 Jul 21, 2016
008dc04
Loaders for single model queries
hilljh82 Jul 21, 2016
a7105b4
Relocated file
hilljh82 Aug 4, 2016
1508e00
Added support for Travis CI
hilljh82 Aug 4, 2016
464ba50
Moved Travis-CI config to different branch
hilljh82 Aug 28, 2016
f5a5b13
Moved ExternalForeignKey annotation to its own branch
hilljh82 Aug 28, 2016
d983e5f
Added documentation; fixed spacing issues
hilljh82 Aug 28, 2016
9632cd8
Fixed format
hilljh82 Aug 28, 2016
7d79b78
Fixed format
hilljh82 Aug 28, 2016
aa85b79
Removed unused variables; fixed formatting
hilljh82 Aug 28, 2016
f0ab254
Fixed merge: Updated sdk version numbers to be compatible with depend…
hilljh82 Aug 28, 2016
344a9a5
Fixed build error
hilljh82 Nov 29, 2016
dea07b7
Merge from Raizlabs/develop
hilljh82 Nov 30, 2016
a1b9485
Fixed build errors related to updates to raizlabs/develop
hilljh82 Dec 1, 2016
56392ad
Fixed merge conflicts
hilljh82 Dec 1, 2016
34acd05
Fixed merge conflicts
hilljh82 Dec 1, 2016
0212982
Fixed merge conflicts
hilljh82 Dec 1, 2016
d1a52cb
Fixed merge conflicts
hilljh82 Dec 1, 2016
fd72253
Removed obsolete file
hilljh82 Dec 1, 2016
0554ec4
Fixed formatting issues
hilljh82 Dec 1, 2016
8d72965
For some reason, lintOptions was added to the build config
hilljh82 Dec 1, 2016
d019191
PropertyExtensions was changed during the merge; this file should not…
hilljh82 Dec 1, 2016
aff9722
Removed obsolete file
hilljh82 Dec 1, 2016
a613727
Fixed naming convention on class variables
hilljh82 Dec 1, 2016
d7d188e
Fixed naming convention on class variables
hilljh82 Dec 1, 2016
c97f1b3
Fixed refactoring error
hilljh82 Dec 1, 2016
83ac02d
Fixed refactoring error
hilljh82 Dec 1, 2016
4cd5e39
Fixed naming conventions errors
hilljh82 Dec 1, 2016
0067c1e
Fixed naming conventions errors
hilljh82 Dec 1, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed build errors
  • Loading branch information
hilljh82 committed Jul 4, 2016
commit 1e05a47b1e24e5166878955bf9b133444dbfe6e2
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/**
* Description: Used inside of {@link ForeignKey#references()}, describes the
* local column name, type, and referencing table column name.
*
*
* Note: the type of the local column must match the
* column type of the referenced column. By using a field as a Model object,
* you will need to ensure the same types are used.
Expand Down
3 changes: 3 additions & 0 deletions dbflow-kotlinextensions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ android {
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
abortOnError false
}
}

dependencies {
Expand Down