├── .gitignore ├── GSpeechSample ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── me │ │ │ └── yurifariasg │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── me │ │ │ │ └── yurifariasg │ │ │ │ ├── MainActivity.java │ │ │ │ └── StreamingRecognizeClient.java │ │ ├── proto │ │ │ ├── .gitignore │ │ │ └── google │ │ │ │ ├── api │ │ │ │ ├── annotations.proto │ │ │ │ ├── http.proto │ │ │ │ ├── label.proto │ │ │ │ └── monitored_resource.proto │ │ │ │ ├── logging │ │ │ │ ├── README.md │ │ │ │ ├── type │ │ │ │ │ ├── http_request.proto │ │ │ │ │ └── log_severity.proto │ │ │ │ └── v2 │ │ │ │ │ ├── log_entry.proto │ │ │ │ │ ├── logging.proto │ │ │ │ │ ├── logging_config.proto │ │ │ │ │ └── logging_metrics.proto │ │ │ │ ├── longrunning │ │ │ │ └── operations.proto │ │ │ │ ├── rpc │ │ │ │ ├── README.md │ │ │ │ ├── code.proto │ │ │ │ ├── error_details.proto │ │ │ │ └── status.proto │ │ │ │ ├── speech │ │ │ │ ├── v1 │ │ │ │ │ └── cloud-speech.proto │ │ │ │ └── v1beta1 │ │ │ │ │ └── cloud_speech.proto │ │ │ │ └── type │ │ │ │ ├── README.md │ │ │ │ ├── color.proto │ │ │ │ ├── date.proto │ │ │ │ ├── dayofweek.proto │ │ │ │ ├── latlng.proto │ │ │ │ ├── money.proto │ │ │ │ └── timeofday.proto │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── me │ │ └── yurifariasg │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /GSpeechSample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/.gitignore -------------------------------------------------------------------------------- /GSpeechSample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /GSpeechSample/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/build.gradle -------------------------------------------------------------------------------- /GSpeechSample/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/proguard-rules.pro -------------------------------------------------------------------------------- /GSpeechSample/app/src/androidTest/java/me/yurifariasg/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/androidTest/java/me/yurifariasg/ApplicationTest.java -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/java/me/yurifariasg/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/java/me/yurifariasg/MainActivity.java -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/java/me/yurifariasg/StreamingRecognizeClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/java/me/yurifariasg/StreamingRecognizeClient.java -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/.gitignore -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/api/annotations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/api/annotations.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/api/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/api/http.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/api/label.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/api/label.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/api/monitored_resource.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/api/monitored_resource.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/logging/README.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | The Google logging service. 3 | -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/logging/type/http_request.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/logging/type/http_request.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/logging/type/log_severity.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/logging/type/log_severity.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/logging/v2/log_entry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/logging/v2/log_entry.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/logging/v2/logging.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/logging/v2/logging.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/logging/v2/logging_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/logging/v2/logging_config.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/logging/v2/logging_metrics.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/logging/v2/logging_metrics.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/longrunning/operations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/longrunning/operations.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/rpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/rpc/README.md -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/rpc/code.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/rpc/code.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/rpc/error_details.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/rpc/error_details.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/rpc/status.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/rpc/status.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/speech/v1/cloud-speech.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/speech/v1/cloud-speech.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/speech/v1beta1/cloud_speech.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/speech/v1beta1/cloud_speech.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/type/README.md -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/type/color.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/type/color.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/type/date.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/type/date.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/type/dayofweek.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/type/dayofweek.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/type/latlng.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/type/latlng.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/type/money.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/type/money.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/proto/google/type/timeofday.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/proto/google/type/timeofday.proto -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /GSpeechSample/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /GSpeechSample/app/src/test/java/me/yurifariasg/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/app/src/test/java/me/yurifariasg/ExampleUnitTest.java -------------------------------------------------------------------------------- /GSpeechSample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/build.gradle -------------------------------------------------------------------------------- /GSpeechSample/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/gradle.properties -------------------------------------------------------------------------------- /GSpeechSample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /GSpeechSample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /GSpeechSample/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/gradlew -------------------------------------------------------------------------------- /GSpeechSample/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/GSpeechSample/gradlew.bat -------------------------------------------------------------------------------- /GSpeechSample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurifariasg/android-google-speech-sample/HEAD/README.md --------------------------------------------------------------------------------