forked from gotev/android-speech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.gradle
37 lines (32 loc) · 1.24 KB
/
manifest.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
ext {
github_username = 'gotev'
github_repository_name = 'android-speech'
maintainer = 'Aleksandar Gotev'
library_description = 'Android speech recognition and text to speech made easy'
library_keywords = ['android', 'speech', 'library', 'text', 'voice', 'recognition', 'text to speech']
library_licenses = ["Apache-2.0"]
library_licenses_url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
library_project_group = 'net.gotev'
library_version = '1.4.0'
version_code = 1
min_sdk = 18
target_sdk = 28
demo_app_id = 'net.gotev.speechdemo'
// Gradle classpath dependencies versions
kotlin_version = '1.3.10'
gradle_version = '3.3.0'
maven_gradle_version = '2.1'
gradle_versions_plugin_version = '0.20.0'
bintray_plugin_version = '1.7'
// Library and app testing dependencies versions
junit_version = '4.12'
androidx_test_core_version = '1.0.0'
androidx_test_runner_version = '1.1.0'
androidx_test_rules_version = '1.1.0'
androidx_test_ext_junit_version = '1.0.0'
androidx_test_ext_truth_version = '1.0.0'
truth_version = '0.42'
androidx_test_espresso_version = '3.1.0'
// Library and app dependencies versions
androidx_appcompat_version = '1.0.2'
}