Skip to content

Commit

Permalink
java upgrades (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
laves authored Dec 22, 2023
1 parent 1cd746a commit 7724b55
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
[![PyPI](https://img.shields.io/pypi/v/pveagle)](https://pypi.org/project/pveagle/)
[![npm](https://img.shields.io/npm/v/@picovoice/eagle-web)](https://www.npmjs.com/package/@picovoice/eagle-web)
[![Maven Central](https://img.shields.io/maven-central/v/ai.picovoice/eagle-android?label=maven-central%20%5Bandroid%5D)](https://repo1.maven.org/maven2/ai/picovoice/eagle-android/)
<!-- markdown-link-check-disable -->
[![CocoaPods](https://img.shields.io/cocoapods/v/Eagle-iOS)](https://cocoapods.org/pods/Eagle-iOS)

<!-- markdown-link-check-enable -->

Made in Vancouver, Canada by [Picovoice](https://picovoice.ai)

Expand Down Expand Up @@ -361,7 +362,9 @@ eagle.delete()

### iOS

<!-- markdown-link-check-disable -->
The Eagle iOS binding is available via [CocoaPods](https://cocoapods.org/pods/Eagle-iOS). To import it into your iOS project, add the following line to your Podfile and run `pod install`:
<!-- markdown-link-check-enable -->

```ruby
pod 'Eagle-iOS'
Expand Down
3 changes: 2 additions & 1 deletion binding/ios/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ Eagle is an on-device speaker recognition engine. Eagle is:
- iOS 13.0+

## Installation

<!-- markdown-link-check-disable -->
The Eagle iOS binding is available via [Cocoapods](https://cocoapods.org/pods/Eagle-iOS). To import it into your iOS project, add the following line to your Podfile:
<!-- markdown-link-check-enable -->

```ruby
pod 'Eagle-iOS'
Expand Down
4 changes: 2 additions & 2 deletions demo/android/EagleDemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath 'com.android.tools.build:gradle:7.4.2'
}
}

Expand All @@ -19,6 +19,6 @@ allprojects {
}
}

task clean(type: Delete) {
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
3 changes: 2 additions & 1 deletion demo/android/EagleDemo/eagle-demo-app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion defaultTargetSdkVersion
compileSdk defaultTargetSdkVersion

defaultConfig {
applicationId "ai.picovoice.eagledemo"
Expand All @@ -26,6 +26,7 @@ android {
lint {
abortOnError false
}
namespace 'ai.picovoice.eagledemo'
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ai.picovoice.eagledemo">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Jun 29 23:02:09 PDT 2021
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 7724b55

Please sign in to comment.