Skip to content

Commit

Permalink
java upgrades (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
laves authored Dec 22, 2023
1 parent 2ac3a36 commit 18279c6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions binding/ios/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ Cobra is a highly accurate and lightweight voice activity detection (VAD) engine

## Installation

<!-- markdown-link-check-disable -->
The Cobra iOS binding is available via [Cocoapods](https://cocoapods.org/pods/Cobra-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 'Cobra-iOS'
Expand Down
6 changes: 3 additions & 3 deletions demo/android/Activity/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ext {
defaultTargetSdkVersion = 31
defaultTargetSdkVersion = 33
}

buildscript {
Expand All @@ -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/Activity/cobra-activity-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.cobraactivitydemo"
Expand All @@ -25,6 +25,7 @@ android {
lint {
abortOnError false
}
namespace 'ai.picovoice.cobraactivitydemo'
}

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.cobraactivitydemo">
<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 @@
#Wed Jul 19 14:23:40 PDT 2023
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 18279c6

Please sign in to comment.