DBFlow
develop
develop
  • README
  • Usage Docs
    • Including In Project
    • Getting Started
    • Proguard
    • Advanced Usage
      • Caching
      • List Queries
      • Multiple Modules
      • QueryModels
      • Indexing
      • SQLCipher
    • Main Usage
      • Databases
      • Models
      • Migrations
      • Views
      • Relationships
      • Storing Data
      • Retrieval
      • SQLite Query Language
      • TypeConverters
      • Observability
    • RXJavaSupport
    • ContentProviderGeneration
    • 5.0 Migration Guide
    • Migration4Guide
  • ISSUE_TEMPLATE
Powered by GitBook
On this page

Was this helpful?

  1. Usage Docs

Proguard

Since DBFlow uses annotation processing, which is run pre-proguard phase, the configuration is highly minimal. Also since we combine all generated files into the GeneratedDatabaseHolder, any other class generated can be obfuscated.

-keep class * extends com.dbflow5.config.DatabaseHolder { *; }

This also works on modules from other library projects that use DBFlow.

PreviousGetting StartedNextAdvanced Usage

Last updated 6 years ago

Was this helpful?