Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.12.4
- **Android ProGuard Fix**: Added ProGuard rules for LiteRT-LM classes (#185)

## 0.12.3
- **Android LiteRT-LM Engine**: Added LiteRT-LM inference engine for Android
- Automatic engine selection based on file extension (`.litertlm` → LiteRT-LM, `.task/.bin` → MediaPipe)
Expand Down
5 changes: 5 additions & 0 deletions android/consumer-proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
-keep class com.google.ai.edge.localagents.** { *; }
-dontwarn com.google.ai.edge.localagents.**

# LiteRT-LM engine (for .litertlm models)
-keep class com.google.ai.edge.litertlm.** { *; }
-keepclassmembers class com.google.ai.edge.litertlm.** { *; }
-dontwarn com.google.ai.edge.litertlm.**

# Guava (used by RAG)
-keep class com.google.guava.** { *; }
-dontwarn com.google.guava.**
Expand Down
2 changes: 1 addition & 1 deletion ios/flutter_gemma.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'flutter_gemma'
s.version = '0.12.3'
s.version = '0.12.4'
s.summary = 'Flutter plugin for running Gemma AI models locally with Gemma 3 Nano support.'
s.description = <<-DESC
The plugin allows running the Gemma AI model locally on a device from a Flutter application.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_gemma
description: "The plugin allows running the Gemma AI model locally on a device from a Flutter application. Includes support for Gemma 3 Nano models with optimized MediaPipe GenAI v0.10.24."
version: 0.12.3
version: 0.12.4
homepage: https://github.com/DenisovAV/flutter_gemma
repository: https://github.com/DenisovAV/flutter_gemma

Expand Down
Loading