File tree Expand file tree Collapse file tree 10 files changed +46
-7
lines changed
Expand file tree Collapse file tree 10 files changed +46
-7
lines changed Original file line number Diff line number Diff line change 2727 steps :
2828 - uses : actions/checkout@v3
2929
30+ # ############# REMOVE AFTER RELEASE ##########################
31+ - name : Set up Java 17
32+ uses : actions/setup-java@v3
33+ with :
34+ java-version : 17
35+ distribution : ' temurin'
36+
37+ - name : Build binding
38+ run : ./gradlew assembleRelease --info
39+ working-directory : binding/android/Eagle
40+ # ############# REMOVE AFTER RELEASE ##########################
41+
3042 - name : Installing Python
3143 uses : actions/setup-python@v5
3244 with :
7991 steps :
8092 - uses : actions/checkout@v3
8193
94+ # ############# REMOVE AFTER RELEASE ##########################
95+ - name : Set up Java 17
96+ uses : actions/setup-java@v3
97+ with :
98+ java-version : 17
99+ distribution : ' temurin'
100+
101+ - name : Build binding
102+ run : ./gradlew assembleRelease --info
103+ working-directory : binding/android/Eagle
104+ # ############# REMOVE AFTER RELEASE ##########################
105+
82106 - name : Installing Python
83107 uses : actions/setup-python@v5
84108 with :
Original file line number Diff line number Diff line change 2020 runs-on : ubuntu-latest
2121 strategy :
2222 matrix :
23- java-version : [11, 17, 21]
23+ java-version : [17, 21]
2424 include :
25- - java-version : 11
26- gradle-version : 6.5
27- agp-version : 4.1.3
2825 - java-version : 17
2926 gradle-version : 7.5
3027 agp-version : 7.4.2
Original file line number Diff line number Diff line change 3535 steps :
3636 - uses : actions/checkout@v3
3737
38+ # ############# REMOVE AFTER RELEASE ##########################
39+ - name : Set up Java 17
40+ uses : actions/setup-java@v3
41+ with :
42+ java-version : 17
43+ distribution : ' temurin'
44+
45+ - name : Build binding
46+ run : ./gradlew assembleRelease --info
47+ working-directory : binding/android/Eagle
48+ # ############# REMOVE AFTER RELEASE ##########################
49+
3850 - name : Installing Python
3951 uses : actions/setup-python@v5
4052 with :
Original file line number Diff line number Diff line change @@ -2,11 +2,12 @@ apply plugin: 'com.android.library'
22
33ext {
44 PUBLISH_GROUP_ID = ' ai.picovoice'
5- PUBLISH_VERSION = ' 1.0.0 '
5+ PUBLISH_VERSION = ' 1.0.1 '
66 PUBLISH_ARTIFACT_ID = ' eagle-android'
77}
88
99android {
10+ namespace ' ai.picovoice.eagle'
1011 compileSdkVersion defaultTargetSdkVersion
1112
1213 defaultConfig {
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ dependencies {
116116 implementation ' androidx.appcompat:appcompat:1.6.1'
117117 implementation ' com.google.android.material:material:1.8.0'
118118 implementation ' androidx.constraintlayout:constraintlayout:2.1.4'
119- implementation ' ai.picovoice :eagle-android:1.0.0 '
119+ implementation project( ' :eagle-android' )
120120
121121 // Espresso UI Testing
122122 androidTestImplementation ' androidx.test.ext:junit:1.1.5'
Original file line number Diff line number Diff line change 11rootProject. name = " EagleTestApp"
22include ' :eagle-test-app'
3+ include(" :eagle-android" )
4+ project(" :eagle-android" ). projectDir = file(" ../Eagle/eagle" )
Original file line number Diff line number Diff line change @@ -67,6 +67,6 @@ dependencies {
6767 implementation ' androidx.appcompat:appcompat:1.4.2'
6868 implementation ' com.google.android.material:material:1.6.1'
6969 implementation ' androidx.constraintlayout:constraintlayout:2.1.4'
70- implementation ' ai.picovoice :eagle-android:1.0.0 '
70+ implementation project( ' :eagle-android' )
7171 implementation ' ai.picovoice:android-voice-processor:1.0.2'
7272}
Original file line number Diff line number Diff line change 11rootProject. name = " EagleDemo"
22include ' :eagle-demo-app'
3+
4+ include(" :eagle-android" )
5+ project(" :eagle-android" ). projectDir = file(" ../../../binding/android/Eagle/eagle" )
You can’t perform that action at this time.
0 commit comments