From 62d3acf311905ac1c6c2f78e9dc1f95fa3591f2b Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Tue, 19 Nov 2024 21:58:25 -0800 Subject: [PATCH] Changing the referenced AAR so that it uses the AAR from the docs --- .gitignore | 4 ++++ torchchat/edge/android/torchchat/app/build.gradle.kts | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 74d0a28fa..61ab1ee4d 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,10 @@ runner-et/cmake-out/* runner-aoti/cmake-out/* cmake-out/ +# Example project Android Studio ignore +torchchat/edge/android/torchchat/.idea/* + + # pte files *.pte diff --git a/torchchat/edge/android/torchchat/app/build.gradle.kts b/torchchat/edge/android/torchchat/app/build.gradle.kts index e0c9c196b..a98a70cab 100644 --- a/torchchat/edge/android/torchchat/app/build.gradle.kts +++ b/torchchat/edge/android/torchchat/app/build.gradle.kts @@ -57,7 +57,7 @@ dependencies { implementation("androidx.constraintlayout:constraintlayout:2.2.0-alpha12") implementation("com.facebook.fbjni:fbjni:0.5.1") implementation("com.google.code.gson:gson:2.8.6") - implementation(files("libs/executorch-llama.aar")) + implementation(files("libs/executorch.aar")) implementation("com.google.android.material:material:1.12.0") implementation("androidx.activity:activity:1.9.0") testImplementation("junit:junit:4.13.2")