Skip to content

Commit

Permalink
update android
Browse files Browse the repository at this point in the history
  • Loading branch information
albho committed Aug 19, 2024
1 parent cb27ee6 commit 7ef74ea
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions binding/android/Orca/orca/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

ext {
PUBLISH_GROUP_ID = 'ai.picovoice'
PUBLISH_VERSION = '0.2.1'
PUBLISH_VERSION = '1.0.0'
PUBLISH_ARTIFACT_ID = 'orca-android'
}

Expand All @@ -15,7 +15,7 @@ android {
minSdkVersion 21
targetSdkVersion defaultTargetSdkVersion
versionCode 2
versionName "0.2.1"
versionName "1.0.0"

consumerProguardFiles "consumer-rules.pro"
}
Expand Down
4 changes: 2 additions & 2 deletions binding/android/OrcaTestApp/orca-test-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'ai.picovoice:orca-android:0.2.1'
implementation 'ai.picovoice:orca-android:1.0.0'

// Espresso UI Testing
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
Expand All @@ -115,7 +115,7 @@ dependencies {
})
androidTestImplementation('com.microsoft.appcenter:espresso-test-extension:1.4')
androidTestImplementation('androidx.test.espresso:espresso-intents:3.5.1')
androidTestImplementation('ai.picovoice:orca-android:0.2.1')
androidTestImplementation('ai.picovoice:orca-android:1.0.0')
}

afterEvaluate {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

package ai.picovoice.orca.testapp;

import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertNotNull;
Expand Down
6 changes: 6 additions & 0 deletions demo/android/OrcaDemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ buildscript {
repositories {
google()
mavenCentral()
maven {
url 'https://s01.oss.sonatype.org/content/repositories/aipicovoice-1334/'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
Expand All @@ -16,6 +19,9 @@ allprojects {
repositories {
google()
mavenCentral()
maven {
url 'https://s01.oss.sonatype.org/content/repositories/aipicovoice-1334/'
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion demo/android/OrcaDemo/orca-demo-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'ai.picovoice:orca-android:0.2.1'
implementation 'ai.picovoice:orca-android:1.0.0'
}

tasks.register('copyParams', Copy) {
Expand Down

0 comments on commit 7ef74ea

Please sign in to comment.