Skip to content

Commit 2dffa01

Browse files
committed
Update to support React Native 0.56
1 parent 0e57f88 commit 2dffa01

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed

TextToSpeech.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = "TextToSpeech"
3-
s.version = "1.4.1"
3+
s.version = "2.0.0"
44
s.summary = "React Native Text-To-Speech library for Android and iOS"
55

66
s.homepage = "https://github.com/ak1394/react-native-tts"
77

88
s.license = "MIT"
99
s.authors = "Anton Krasovsky"
10-
s.platform = :ios, "7.0"
10+
s.platform = :ios, "9.0"
1111

1212
s.source = { :git => "https://github.com/ak1394/react-native-tts.git" }
1313

android/build.gradle

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,31 @@
1+
buildscript {
2+
repositories {
3+
jcenter()
4+
}
5+
6+
dependencies {
7+
classpath 'com.android.tools.build:gradle:1.3.1'
8+
}
9+
}
10+
111
apply plugin: 'com.android.library'
212

313
android {
4-
compileSdkVersion 23
5-
buildToolsVersion "23.0.1"
14+
compileSdkVersion 26
15+
buildToolsVersion "26.0.3"
616

717
defaultConfig {
818
minSdkVersion 16
9-
targetSdkVersion 23
19+
targetSdkVersion 26
1020
versionCode 1
1121
versionName "1.0"
1222
}
1323
}
1424

25+
repositories {
26+
mavenCentral()
27+
}
28+
1529
dependencies {
16-
compile fileTree(include: ['*.jar'], dir: 'libs')
17-
compile 'com.android.support:support-v4:23.0.1'
18-
compile 'com.android.support:appcompat-v7:23.4.0'
1930
compile 'com.facebook.react:react-native:+'
2031
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-tts",
3-
"version": "1.5.2",
3+
"version": "2.0.0",
44
"description": "React Native Text-To-Speech module for Android and iOS",
55
"main": "index.js",
66
"repository": {

0 commit comments

Comments
 (0)