Skip to content

Commit 5b85f31

Browse files
committed
android release
1 parent 7e294d6 commit 5b85f31

File tree

6 files changed

+3
-39
lines changed

6 files changed

+3
-39
lines changed

.github/workflows/android-browserstack.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,6 @@ jobs:
4040
java-version: '17'
4141
distribution: 'temurin'
4242

43-
############## REMOVE AFTER RELEASE ##########################
44-
- name: Build binding
45-
run: ./gradlew assembleRelease --info
46-
working-directory: binding/android/Orca
47-
############## REMOVE AFTER RELEASE ##########################
48-
4943
- name: Copy test_resources
5044
run: ./copy_test_resources.sh
5145

@@ -101,12 +95,6 @@ jobs:
10195
java-version: '17'
10296
distribution: 'temurin'
10397

104-
############## REMOVE AFTER RELEASE ##########################
105-
- name: Build binding
106-
run: ./gradlew assembleRelease --info
107-
working-directory: binding/android/Orca
108-
############## REMOVE AFTER RELEASE ##########################
109-
11098
- name: Copy test_resources
11199
run: ./copy_test_resources.sh
112100

.github/workflows/android-demos.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,6 @@ jobs:
3939
steps:
4040
- uses: actions/checkout@v3
4141

42-
############## REMOVE AFTER RELEASE ##########################
43-
- name: Set up Java 17
44-
uses: actions/setup-java@v3
45-
with:
46-
java-version: 17
47-
distribution: 'temurin'
48-
49-
- name: Build binding
50-
run: ./gradlew assembleRelease --info
51-
working-directory: binding/android/Orca
52-
############## REMOVE AFTER RELEASE ##########################
53-
5442
- name: Override gradle settings
5543
run: sed -i "s/com.android.tools.build:gradle:[0-9]*\.[0-9]*\.[0-9]*/com.android.tools.build:gradle:${{ matrix.agp-version }}/g" build.gradle
5644

.github/workflows/android-perf.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,6 @@ jobs:
4747
java-version: '17'
4848
distribution: 'temurin'
4949

50-
############## REMOVE AFTER RELEASE ##########################
51-
- name: Build binding
52-
run: ./gradlew assembleRelease --info
53-
working-directory: binding/android/Orca
54-
############## REMOVE AFTER RELEASE ##########################
55-
5650
- name: Copy test_resources
5751
run: ./copy_test_resources.sh
5852

.github/workflows/android-upload.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,6 @@ jobs:
2929
java-version: 17
3030
distribution: 'temurin'
3131

32-
############## REMOVE AFTER RELEASE ##########################
33-
- name: Build binding
34-
run: ./gradlew assembleRelease --info
35-
working-directory: binding/android/Orca
36-
############## REMOVE AFTER RELEASE ##########################
37-
3832
- name: Set up service json
3933
run: echo ${{secrets.GOOGLE_PLAY_SERVICE_JSON}} | base64 -d > ./service-account.json
4034

binding/android/OrcaTestApp/orca-test-app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,15 @@ dependencies {
111111
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
112112
implementation 'com.google.code.gson:gson:2.10'
113113
implementation 'com.google.errorprone:error_prone_annotations:2.36.0'
114-
implementation files("../../Orca/orca/build/outputs/aar/orca-release.aar")
114+
implementation 'ai.picovoice:orca-android:1.2.0'
115115

116116
// Espresso UI Testing
117117
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
118118
androidTestImplementation('androidx.test.espresso:espresso-core:3.2.0', {
119119
exclude group: 'com.android.support', module: 'support-annotations'
120120
})
121121
androidTestImplementation('androidx.test.espresso:espresso-intents:3.5.1')
122-
androidTestImplementation files("../../Orca/orca/build/outputs/aar/orca-release.aar")
122+
androidTestImplementation('ai.picovoice:orca-android:1.2.0')
123123
}
124124

125125
afterEvaluate {

demo/android/OrcaDemo/orca-demo-app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ dependencies {
113113
implementation 'androidx.appcompat:appcompat:1.4.2'
114114
implementation 'com.google.android.material:material:1.6.1'
115115
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
116-
implementation files('../../../../binding/android/Orca/orca/build/outputs/aar/orca-release.aar')
116+
implementation 'ai.picovoice:orca-android:1.2.0'
117117
}
118118

119119
afterEvaluate {

0 commit comments

Comments
 (0)