fix release build

This commit is contained in:
Milos Kozak 2022-11-13 17:34:20 +01:00
parent dbc7b73336
commit e49c5f2d35
4 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
package info.nightscout.rx.annotations package info.nightscout.rx.annotations
/** /**
* Annotate a class with [DbOpenForTesting] if it should be extendable for testing. * Annotate a class with [RxOpenForTesting] if it should be extendable for testing.
* In production the class remains final. * In production the class remains final.
*/ */
@Target(AnnotationTarget.CLASS) @Target(AnnotationTarget.CLASS)

View file

@ -29,5 +29,5 @@ dependencies {
allOpen { allOpen {
// allows mocking for classes w/o directly opening them for release builds // allows mocking for classes w/o directly opening them for release builds
annotation 'info.nightscout.androidaps.annotations.DbOpenForTesting' annotation 'info.nightscout.database.annotations.DbOpenForTesting'
} }

View file

@ -48,5 +48,5 @@ dependencies {
allOpen { allOpen {
// allows mocking for classes w/o directly opening them for release builds // allows mocking for classes w/o directly opening them for release builds
annotation 'info.nightscout.androidaps.annotations.DbOpenForTesting' annotation 'info.nightscout.database.annotations.DbOpenForTesting'
} }

View file

@ -1,4 +1,4 @@
package info.nightscout.androidaps.annotations package info.nightscout.database.annotations
/** /**
* Annotate a class with [DbOpenForTesting] if it should be extendable for testing. * Annotate a class with [DbOpenForTesting] if it should be extendable for testing.