Releases: BoD/android-contentprovider-generator
Releases · BoD/android-contentprovider-generator
v1.13.1
v1.13.0
v1.12.0
This is a somewhat big update in the way the tool is used, and there are also a few syntax differences.
- New Gradle plugin, and this is now the preferred way to generate the code.
- The config
syntaxVersion
for this release is 4. This means you must update your_config.json
file. - Syntax updates:
projectPackageId
is renamed topackageName
to avoid confusion and match the term used here: https://developer.android.com/studio/build/application-id.html.sqliteOpenHelperCallbacksClassName
is now optional. If omitted,BaseSQLiteOpenHelperCallbacks
is used in the generated code. If present, it must reference an existing class in your project (it will not be generated), that extendsBaseSQLiteOpenHelperCallbacks
.sqliteOpenHelperClassName
,enableForeignKeys
,useAnnotations
,useSupportLibrary
andgenerateBeans
are now optional and will assume default values if omitted.
- The CLI tool still exists but its name has changed (now
acpg-cli-<version>.jar
). - Other internal changes that as a user, you needn't care about:
- Use of Gradle instead of Maven.
- Module separation (lib, cli, gradle-plugin).
- Use of Jackson to parse the json files.
- Use of Log4J to output logs.
v1.11.0
v1.10.0
v1.9.3
- Updated content provider template to support ${applicationId} variable that is supported in the
new manifest merger build tool (thanks almilli!). - Fixed invalid json in sample and readme (thanks mdupierreux!).
- Added methods that take a Context in addition to the ones that take a ContentResolver.
- New
orderByXXX
methods in Selection classes (thanks yargray!).
v1.9.2
v1.9.1
v1.9.0
- The config
syntaxVersion
for this release is 3. This means you must update your_config.json
file. - Generation of new "Model" interfaces (one per entity)
- New
useAnnotations
boolean parameter in config, to generate annotations from thesupport-annotations
library (issue #38) - A few optimizations in the generated code
- Column names are no longer automatically made lower case, to help using the tool with an existing db (issue #52)
- New
contains
,startsWith
,endsWitdh
methods on Selection objects (issue #55) - The
CREATE_TABLE and CREATE_INDEX
constants are now public to make upgrades easier (issue #59) - The "id" (single column primary key) can now be specified to be an arbitrary column, instead of automatically being generated as "_id" (issue #56)
- Ability to specify a LIMIT and HAVING clause in queries, via a query parameter (issues #62 and #70)
- Better handling of default values (issue #67)
- Ability to call
notify
,groupBy
,limit
andhaving
on Selection objects.