实例介绍
Android实现电话录音,通过Service实现对电话状态的监听,录音并保存
【实例截图】
【核心代码】
MyApplication
└── MyApplication
├── app
│ ├── app.iml
│ ├── build
│ │ ├── generated
│ │ │ ├── mockable-android-26.v3.jar
│ │ │ ├── res
│ │ │ │ └── pngs
│ │ │ │ ├── debug
│ │ │ │ │ ├── drawable-anydpi-v21
│ │ │ │ │ │ └── ic_launcher_background.xml
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ │ ├── drawable-xxhdpi
│ │ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ │ └── drawable-xxxhdpi
│ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ └── release
│ │ │ │ ├── drawable-anydpi-v21
│ │ │ │ │ └── ic_launcher_background.xml
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ ├── drawable-xxhdpi
│ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ └── drawable-xxxhdpi
│ │ │ │ └── ic_launcher_background.png
│ │ │ └── source
│ │ │ ├── buildConfig
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── admin
│ │ │ │ │ └── myapplication
│ │ │ │ │ └── test
│ │ │ │ │ └── BuildConfig.java
│ │ │ │ ├── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── admin
│ │ │ │ │ └── myapplication
│ │ │ │ │ └── BuildConfig.java
│ │ │ │ └── release
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── admin
│ │ │ │ └── myapplication
│ │ │ │ └── BuildConfig.java
│ │ │ └── r
│ │ │ ├── androidTest
│ │ │ │ └── debug
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── admin
│ │ │ │ └── myapplication
│ │ │ │ └── test
│ │ │ │ └── R.java
│ │ │ ├── debug
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ └── constraint
│ │ │ │ │ └── R.java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── admin
│ │ │ │ └── myapplication
│ │ │ │ └── R.java
│ │ │ └── release
│ │ │ ├── android
│ │ │ │ └── support
│ │ │ │ └── constraint
│ │ │ │ └── R.java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── admin
│ │ │ └── myapplication
│ │ │ └── R.java
│ │ ├── intermediates
│ │ │ ├── blame
│ │ │ │ └── res
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── multi-v2
│ │ │ │ │ ├── debug.json
│ │ │ │ │ └── values.json
│ │ │ │ ├── debug
│ │ │ │ │ ├── multi-v2
│ │ │ │ │ │ ├── debug.json
│ │ │ │ │ │ └── values.json
│ │ │ │ │ └── single
│ │ │ │ │ └── debug.json
│ │ │ │ └── release
│ │ │ │ ├── multi-v2
│ │ │ │ │ ├── release.json
│ │ │ │ │ └── values.json
│ │ │ │ └── single
│ │ │ │ └── release.json
│ │ │ ├── classes
│ │ │ │ ├── debug
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── constraint
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── admin
│ │ │ │ │ └── myapplication
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── MainActivity$1.class
│ │ │ │ │ ├── MainActivity$MyServiceConnection.class
│ │ │ │ │ ├── MainActivity.class
│ │ │ │ │ ├── PhoneService$1.class
│ │ │ │ │ ├── PhoneService$PhoneListener.class
│ │ │ │ │ ├── PhoneService.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ └── R.class
│ │ │ │ └── release
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ └── constraint
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── admin
│ │ │ │ └── myapplication
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── MainActivity$1.class
│ │ │ │ ├── MainActivity$MyServiceConnection.class
│ │ │ │ ├── MainActivity.class
│ │ │ │ ├── PhoneService$1.class
│ │ │ │ ├── PhoneService$PhoneListener.class
│ │ │ │ ├── PhoneService.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$color.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$mipmap.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$styleable.class
│ │ │ │ ├── R$style.class
│ │ │ │ └── R.class
│ │ │ ├── incremental
│ │ │ │ ├── compileDebugAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── compileDebugAndroidTestAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── compileReleaseAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── debug-mergeJavaRes
│ │ │ │ │ ├── merge-state
│ │ │ │ │ └── zip-cache
│ │ │ │ │ ├── LwzMBh7vJuXf16jF26fQBCWOTIE=
│ │ │ │ │ └── vowiaMPLzn6phfWBJq0GR9GO0aE=
│ │ │ │ ├── debug-mergeJniLibs
│ │ │ │ │ ├── merge-state
│ │ │ │ │ └── zip-cache
│ │ │ │ │ ├── LwzMBh7vJuXf16jF26fQBCWOTIE=
│ │ │ │ │ └── vowiaMPLzn6phfWBJq0GR9GO0aE=
│ │ │ │ ├── mergeDebugAndroidTestResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ └── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugAssets
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugJniLibFolders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugShaders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseAssets
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseJniLibFolders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseShaders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── packageDebug
│ │ │ │ │ └── debug
│ │ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ │ ├── file-input-save-data.txt
│ │ │ │ │ └── zip-cache
│ │ │ │ │ └── KeaqWeEsCj9oGbRwZrN4bj3Fa+8=
│ │ │ │ ├── packageRelease
│ │ │ │ │ └── release
│ │ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ │ ├── file-input-save-data.txt
│ │ │ │ │ └── zip-cache
│ │ │ │ │ └── vWyubH4rYxah0WYCrTsZ2gRjZ7w=
│ │ │ │ ├── release-mergeJavaRes
│ │ │ │ │ ├── merge-state
│ │ │ │ │ └── zip-cache
│ │ │ │ │ ├── LwzMBh7vJuXf16jF26fQBCWOTIE=
│ │ │ │ │ └── vowiaMPLzn6phfWBJq0GR9GO0aE=
│ │ │ │ └── release-mergeJniLibs
│ │ │ │ ├── merge-state
│ │ │ │ └── zip-cache
│ │ │ │ ├── LwzMBh7vJuXf16jF26fQBCWOTIE=
│ │ │ │ └── vowiaMPLzn6phfWBJq0GR9GO0aE=
│ │ │ ├── javaPrecompile
│ │ │ │ ├── debug
│ │ │ │ │ └── annotationProcessors.json
│ │ │ │ └── release
│ │ │ │ └── annotationProcessors.json
│ │ │ ├── manifest
│ │ │ │ └── androidTest
│ │ │ │ └── debug
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ └── output.json
│ │ │ ├── manifests
│ │ │ │ ├── density
│ │ │ │ │ ├── debug
│ │ │ │ │ │ └── output.json
│ │ │ │ │ └── release
│ │ │ │ │ └── output.json
│ │ │ │ ├── full
│ │ │ │ │ ├── debug
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ └── output.json
│ │ │ │ │ └── release
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ └── output.json
│ │ │ │ └── instant-run
│ │ │ │ ├── debug
│ │ │ │ │ └── output.json
│ │ │ │ └── release
│ │ │ │ └── output.json
│ │ │ ├── res
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ ├── output.json
│ │ │ │ │ └── resources-debugAndroidTest.ap_
│ │ │ │ ├── debug
│ │ │ │ │ ├── output.json
│ │ │ │ │ └── resources-debug.ap_
│ │ │ │ ├── merged
│ │ │ │ │ ├── androidTest
│ │ │ │ │ │ └── debug
│ │ │ │ │ │ └── values_values.arsc.flat
│ │ │ │ │ ├── debug
│ │ │ │ │ │ ├── drawable-anydpi-v21_ic_launcher_background.xml.flat
│ │ │ │ │ │ ├── drawable-hdpi_ic_launcher_background.png.flat
│ │ │ │ │ │ ├── drawable-ldpi_ic_launcher_background.png.flat
│ │ │ │ │ │ ├── drawable-mdpi_ic_launcher_background.png.flat
│ │ │ │ │ │ ├── drawable-v24_ic_launcher_foreground.xml.flat
│ │ │ │ │ │ ├── drawable-xhdpi_ic_launcher_background.png.flat
│ │ │ │ │ │ ├── drawable-xxhdpi_ic_launcher_background.png.flat
│ │ │ │ │ │ ├── drawable-xxxhdpi_ic_launcher_background.png.flat
│ │ │ │ │ │ ├── layout_activity_main.xml.flat
│ │ │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher_round.xml.flat
│ │ │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher.xml.flat
│ │ │ │ │ │ ├── mipmap-hdpi_ic_launcher.png.flat
│ │ │ │ │ │ ├── mipmap-hdpi_ic_launcher_round.png.flat
│ │ │ │ │ │ ├── mipmap-mdpi_ic_launcher.png.flat
│ │ │ │ │ │ ├── mipmap-mdpi_ic_launcher_round.png.flat
│ │ │ │ │ │ ├── mipmap-xhdpi_ic_launcher.png.flat
│ │ │ │ │ │ ├── mipmap-xhdpi_ic_launcher_round.png.flat
│ │ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher.png.flat
│ │ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher_round.png.flat
│ │ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher.png.flat
│ │ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher_round.png.flat
│ │ │ │ │ │ └── values_values.arsc.flat
│ │ │ │ │ └── release
│ │ │ │ │ ├── drawable-anydpi-v21_ic_launcher_background.xml.flat
│ │ │ │ │ ├── drawable-hdpi_ic_launcher_background.png.flat
│ │ │ │ │ ├── drawable-ldpi_ic_launcher_background.png.flat
│ │ │ │ │ ├── drawable-mdpi_ic_launcher_background.png.flat
│ │ │ │ │ ├── drawable-v24_ic_launcher_foreground.xml.flat
│ │ │ │ │ ├── drawable-xhdpi_ic_launcher_background.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_ic_launcher_background.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi_ic_launcher_background.png.flat
│ │ │ │ │ ├── layout_activity_main.xml.flat
│ │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher_round.xml.flat
│ │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher.xml.flat
│ │ │ │ │ ├── mipmap-hdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-hdpi_ic_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-mdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-mdpi_ic_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xhdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-xhdpi_ic_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher_round.png.flat
│ │ │ │ │ └── values_values.arsc.flat
│ │ │ │ ├── release
│ │ │ │ │ ├── output.json
│ │ │ │ │ └── resources-release.ap_
│ │ │ │ └── symbol-table-with-package
│ │ │ │ ├── debug
│ │ │ │ │ └── package-aware-r.txt
│ │ │ │ └── release
│ │ │ │ └── package-aware-r.txt
│ │ │ ├── splits-support
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── split-list.gson
│ │ │ │ ├── debug
│ │ │ │ │ └── split-list.gson
│ │ │ │ └── release
│ │ │ │ └── split-list.gson
│ │ │ ├── symbols
│ │ │ │ ├── debug
│ │ │ │ │ └── R.txt
│ │ │ │ └── release
│ │ │ │ └── R.txt
│ │ │ └── transforms
│ │ │ ├── dex
│ │ │ │ └── release
│ │ │ │ ├── 0
│ │ │ │ │ └── classes.dex
│ │ │ │ └── __content__.json
│ │ │ ├── dexBuilder
│ │ │ │ └── debug
│ │ │ │ ├── 0.jar
│ │ │ │ ├── 1.jar
│ │ │ │ ├── 2
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── constraint
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── admin
│ │ │ │ │ └── myapplication
│ │ │ │ │ ├── BuildConfig.dex
│ │ │ │ │ ├── MainActivity$1.dex
│ │ │ │ │ ├── MainActivity$MyServiceConnection.dex
│ │ │ │ │ ├── MainActivity.dex
│ │ │ │ │ ├── PhoneService$1.dex
│ │ │ │ │ ├── PhoneService$PhoneListener.dex
│ │ │ │ │ ├── PhoneService.dex
│ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ ├── R$color.dex
│ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ ├── R$id.dex
│ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ ├── R$mipmap.dex
│ │ │ │ │ ├── R$string.dex
│ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ ├── R$style.dex
│ │ │ │ │ └── R.dex
│ │ │ │ └── __content__.json
│ │ │ ├── dexMerger
│ │ │ │ └── debug
│ │ │ │ ├── 0
│ │ │ │ │ └── classes.dex
│ │ │ │ └── __content__.json
│ │ │ ├── externalLibsDexMerger
│ │ │ │ └── debug
│ │ │ │ ├── 0
│ │ │ │ │ └── classes.dex
│ │ │ │ └── __content__.json
│ │ │ ├── mergeJavaRes
│ │ │ │ ├── debug
│ │ │ │ │ ├── 0.jar
│ │ │ │ │ └── __content__.json
│ │ │ │ └── release
│ │ │ │ ├── 0.jar
│ │ │ │ └── __content__.json
│ │ │ ├── mergeJniLibs
│ │ │ │ ├── debug
│ │ │ │ │ └── __content__.json
│ │ │ │ └── release
│ │ │ │ └── __content__.json
│ │ │ └── preDex
│ │ │ └── release
│ │ │ ├── 0.jar
│ │ │ ├── 1.jar
│ │ │ ├── 2.jar
│ │ │ └── __content__.json
│ │ ├── outputs
│ │ │ ├── apk
│ │ │ │ └── debug
│ │ │ │ ├── app-debug.apk
│ │ │ │ └── output.json
│ │ │ └── logs
│ │ │ ├── manifest-merger-debug-report.txt
│ │ │ └── manifest-merger-release-report.txt
│ │ └── reports
│ │ ├── lint-results-release-fatal.html
│ │ └── lint-results-release-fatal.xml
│ ├── build.gradle
│ ├── proguard-rules.pro
│ ├── release
│ │ ├── app-release.apk
│ │ └── output.json
│ └── src
│ ├── androidTest
│ │ └── java
│ │ └── com
│ │ └── example
│ │ └── admin
│ │ └── myapplication
│ │ └── ExampleInstrumentedTest.java
│ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── admin
│ │ │ └── myapplication
│ │ │ ├── MainActivity.java
│ │ │ └── PhoneService.java
│ │ └── res
│ │ ├── drawable
│ │ │ └── ic_launcher_background.xml
│ │ ├── drawable-v24
│ │ │ └── ic_launcher_foreground.xml
│ │ ├── layout
│ │ │ └── activity_main.xml
│ │ ├── mipmap-anydpi-v26
│ │ │ ├── ic_launcher_round.xml
│ │ │ └── ic_launcher.xml
│ │ ├── mipmap-hdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ ├── mipmap-mdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ ├── mipmap-xhdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ ├── mipmap-xxhdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ ├── mipmap-xxxhdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ └── values
│ │ ├── colors.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ └── test
│ └── java
│ └── com
│ └── example
│ └── admin
│ └── myapplication
│ └── ExampleUnitTest.java
├── build
│ └── android-profile
│ ├── profile-2018-06-06-10-35-48-323.json
│ ├── profile-2018-06-06-10-35-48-323.rawproto
│ ├── profile-2018-06-06-10-37-59-738.json
│ ├── profile-2018-06-06-10-37-59-738.rawproto
│ ├── profile-2018-06-06-10-38-55-969.json
│ ├── profile-2018-06-06-10-38-55-969.rawproto
│ ├── profile-2018-06-06-10-39-15-082.json
│ ├── profile-2018-06-06-10-39-15-082.rawproto
│ ├── profile-2018-06-06-10-39-27-392.json
│ ├── profile-2018-06-06-10-39-27-392.rawproto
│ ├── profile-2018-06-06-10-39-51-189.json
│ ├── profile-2018-06-06-10-39-51-189.rawproto
│ ├── profile-2018-06-06-10-44-22-429.json
│ ├── profile-2018-06-06-10-44-22-429.rawproto
│ ├── profile-2018-06-06-10-44-27-505.json
│ ├── profile-2018-06-06-10-44-27-505.rawproto
│ ├── profile-2018-06-06-10-59-43-166.json
│ ├── profile-2018-06-06-10-59-43-166.rawproto
│ ├── profile-2018-06-06-11-41-37-728.json
│ ├── profile-2018-06-06-11-41-37-728.rawproto
│ ├── profile-2018-06-06-11-42-15-167.json
│ ├── profile-2018-06-06-11-42-15-167.rawproto
│ ├── profile-2018-06-06-15-00-17-993.json
│ ├── profile-2018-06-06-15-00-17-993.rawproto
│ ├── profile-2018-06-06-15-02-10-293.json
│ ├── profile-2018-06-06-15-02-10-293.rawproto
│ ├── profile-2018-06-06-15-17-35-641.json
│ ├── profile-2018-06-06-15-17-35-641.rawproto
│ ├── profile-2018-06-06-15-21-24-640.json
│ ├── profile-2018-06-06-15-21-24-640.rawproto
│ ├── profile-2018-06-06-15-24-05-260.json
│ ├── profile-2018-06-06-15-24-05-260.rawproto
│ ├── profile-2018-06-06-15-27-58-296.json
│ ├── profile-2018-06-06-15-27-58-296.rawproto
│ ├── profile-2018-06-06-15-28-06-504.json
│ ├── profile-2018-06-06-15-28-06-504.rawproto
│ ├── profile-2018-06-06-15-36-59-683.json
│ ├── profile-2018-06-06-15-36-59-683.rawproto
│ ├── profile-2018-06-06-15-39-55-767.json
│ ├── profile-2018-06-06-15-39-55-767.rawproto
│ ├── profile-2018-06-06-15-42-27-494.json
│ ├── profile-2018-06-06-15-42-27-494.rawproto
│ ├── profile-2018-06-06-15-42-46-147.json
│ ├── profile-2018-06-06-15-42-46-147.rawproto
│ ├── profile-2018-06-06-15-43-19-807.json
│ ├── profile-2018-06-06-15-43-19-807.rawproto
│ ├── profile-2018-06-06-15-45-47-110.json
│ ├── profile-2018-06-06-15-45-47-110.rawproto
│ ├── profile-2018-06-06-15-52-30-774.json
│ ├── profile-2018-06-06-15-52-30-774.rawproto
│ ├── profile-2018-06-06-16-04-50-615.json
│ ├── profile-2018-06-06-16-04-50-615.rawproto
│ ├── profile-2018-06-06-16-09-55-597.json
│ ├── profile-2018-06-06-16-09-55-597.rawproto
│ ├── profile-2018-06-06-16-19-27-515.json
│ ├── profile-2018-06-06-16-19-27-515.rawproto
│ ├── profile-2018-06-06-16-29-20-445.json
│ ├── profile-2018-06-06-16-29-20-445.rawproto
│ ├── profile-2018-06-06-16-40-56-889.json
│ ├── profile-2018-06-06-16-40-56-889.rawproto
│ ├── profile-2018-06-06-16-41-39-665.json
│ ├── profile-2018-06-06-16-41-39-665.rawproto
│ ├── profile-2018-06-06-16-42-02-549.json
│ ├── profile-2018-06-06-16-42-02-549.rawproto
│ ├── profile-2018-06-06-16-54-11-891.json
│ ├── profile-2018-06-06-16-54-11-891.rawproto
│ ├── profile-2018-06-06-16-57-46-230.json
│ ├── profile-2018-06-06-16-57-46-230.rawproto
│ ├── profile-2018-06-06-18-36-00-785.json
│ ├── profile-2018-06-06-18-36-00-785.rawproto
│ ├── profile-2018-06-07-10-58-44-044.json
│ ├── profile-2018-06-07-10-58-44-044.rawproto
│ ├── profile-2018-06-07-10-58-53-618.json
│ ├── profile-2018-06-07-10-58-53-618.rawproto
│ ├── profile-2018-06-09-10-36-48-300.json
│ ├── profile-2018-06-09-10-36-48-300.rawproto
│ ├── profile-2018-06-09-10-36-54-052.json
│ ├── profile-2018-06-09-10-36-54-052.rawproto
│ ├── profile-2018-06-09-11-26-07-420.json
│ └── profile-2018-06-09-11-26-07-420.rawproto
├── build.gradle
├── gradle
│ └── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── local.properties
├── MyApplication.iml
└── settings.gradle
228 directories, 340 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论