Skip to content

Commit 97f112f

Browse files
committed
update
1 parent 677442d commit 97f112f

File tree

8 files changed

+153
-24
lines changed

8 files changed

+153
-24
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
.gradle
3+
.idea
4+
build
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#built application files
2+
*.apk
3+
*.ap_
4+
5+
# files for the dex VM
6+
*.dex
7+
8+
# Java class files
9+
*.class
10+
11+
# generated files
12+
bin/
13+
gen/
14+
15+
# Local configuration file (sdk path, etc)
16+
local.properties
17+
18+
# Windows thumbnail db
19+
Thumbs.db
20+
21+
# OSX files
22+
.DS_Store
23+
24+
# Eclipse project files
25+
.classpath
26+
.project
27+
28+
# Android Studio
29+
.idea
30+
#.idea/workspace.xml - remove # and delete .idea if it better suit your needs.
31+
.gradle
32+
build/
33+
34+
# Signing files
35+
.signing/
36+
37+
# User-specific configurations
38+
.idea/libraries/
39+
.idea/workspace.xml
40+
.idea/tasks.xml
41+
.idea/.name
42+
.idea/compiler.xml
43+
.idea/copyright/profiles_settings.xml
44+
.idea/encodings.xml
45+
.idea/misc.xml
46+
.idea/modules.xml
47+
.idea/scopes/scope_settings.xml
48+
.idea/vcs.xml
49+
*.iml
Binary file not shown.
Binary file not shown.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#built application files
2+
*.apk
3+
*.ap_
4+
5+
# files for the dex VM
6+
*.dex
7+
8+
# Java class files
9+
*.class
10+
11+
# generated files
12+
bin/
13+
gen/
14+
15+
# Local configuration file (sdk path, etc)
16+
local.properties
17+
18+
# Windows thumbnail db
19+
Thumbs.db
20+
21+
# OSX files
22+
.DS_Store
23+
24+
# Eclipse project files
25+
.classpath
26+
.project
27+
28+
# Android Studio
29+
.idea
30+
#.idea/workspace.xml - remove # and delete .idea if it better suit your needs.
31+
.gradle
32+
build/
33+
34+
# Signing files
35+
.signing/
36+
37+
# User-specific configurations
38+
.idea/libraries/
39+
.idea/workspace.xml
40+
.idea/tasks.xml
41+
.idea/.name
42+
.idea/compiler.xml
43+
.idea/copyright/profiles_settings.xml
44+
.idea/encodings.xml
45+
.idea/misc.xml
46+
.idea/modules.xml
47+
.idea/scopes/scope_settings.xml
48+
.idea/vcs.xml
49+
*.iml
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/workspace.xml
5+
/.idea/libraries
6+
.DS_Store
7+
/build
8+
/captures
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## This file must *NOT* be checked into Version Control Systems,
2+
# as it contains information specific to your local configuration.
3+
#
4+
# Location of the SDK. This is only used by Gradle.
5+
# For customization when using a Version Control System, please read the
6+
# header note.
7+
#Wed Feb 15 09:30:46 CST 2023
8+
sdk.dir=/Users/frank/Library/Android/sdk

README.md

Lines changed: 35 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,53 @@
11
### Android 学习资料整理
22

33
#### 书籍
4-
+ [《第一行代码:Android(第2版)》](https://book.douban.com/subject/26915433/)
5-
+ [《第一行代码: Android(第三版)》](https://gitee.com/frank2020/android-with-kotlin) 使用Kotlin的源码。
6-
+ [Android开发训练](http://www.android-doc.com/training/index.html) Google官方的Android开发训练课程。
7-
+ [App研发录](https://book.douban.com/subject/26649050/)
8-
+ [代码](./AppProgrammingSource/)
9-
+ 《Android Jetpack应用指南》
10-
+ [代码](https://github.com/feixiao/JetpackTest)
11-
+ [AndroidNote](https://github.com/feixiao/AndroidNote.git)
4+
5+
- [《第一行代码:Android(第 2 版)》](https://book.douban.com/subject/26915433/)
6+
- [《第一行代码: Android(第三版)》](https://gitee.com/frank2020/android-with-kotlin) 使用 Kotlin 的源码。
7+
- [Android 开发训练](http://www.android-doc.com/training/index.html) Google 官方的 Android 开发训练课程。
8+
- [App 研发录](https://book.douban.com/subject/26649050/)
9+
- [代码](./AppProgrammingSource/)
10+
- 《Android Jetpack 应用指南》
11+
- [代码](https://github.com/feixiao/JetpackTest)
12+
- [AndroidNote](https://github.com/feixiao/AndroidNote.git)
13+
1214
#### 视频教程
13-
+ [《Android视频播放器》](http://www.imooc.com/learn/788)
1415

16+
- [《Android 视频播放器》](http://www.imooc.com/learn/788)
1517

1618
#### 简单例子
17-
+ [《OpenGL ES教程》](https://github.com/feixiao/NDK_OpenGLES_3_0)
18-
+ [《media-samples》](https://github.com/feixiao/media-samples) Multiple samples showing the best practices in media APIs on Android.
19-
+ [《grafik》](https://github.com/feixiao/grafika) a dumping ground for Android graphics & media hacks.
2019

20+
- [《OpenGL ES 教程》](https://github.com/feixiao/NDK_OpenGLES_3_0)
21+
- [《media-samples》](https://github.com/feixiao/media-samples) Multiple samples showing the best practices in media APIs on Android.
22+
- [《grafik》](https://github.com/feixiao/grafika) a dumping ground for Android graphics & media hacks.
23+
24+
#### Native
25+
26+
- [jni-demo](https://gitee.com/frank2020/jni-demo)
2127

2228
#### OpenGL
23-
+ [《OpenGLES3.0StudyDemo》](https://github.com/feixiao/OpenGLES3.0StudyDemo) OpenGL例子,有个GLSurface + MediaPlayer
24-
+ [《NDK_OpenGLES_3_0》](https://github.com/feixiao/NDK_OpenGLES_3_0.git) OpenGL ES 3.0例子
25-
+ [《opengles3-book》](https://github.com/feixiao/opengles3-book.git) opengles3-book
29+
30+
- [《OpenGLES3.0StudyDemo》](https://github.com/feixiao/OpenGLES3.0StudyDemo) OpenGL 例子,有个 GLSurface + MediaPlayer
31+
- [《NDK_OpenGLES_3_0》](https://github.com/feixiao/NDK_OpenGLES_3_0.git) OpenGL ES 3.0 例子
32+
- [《opengles3-book》](https://github.com/feixiao/opengles3-book.git) opengles3-book
2633

2734
#### 开源项目
28-
+ [android-UniversalMusicPlayer](https://github.com/googlesamples/android-UniversalMusicPlayer)
29-
+ [ijkplayer](https://github.com/feixiao/ijkplayer)
30-
+ [FilterPlayer](https://github.com/feixiao/FilterPlayer) FilterPlayer, using mediaplayer and GLSurfaceView to add filter on videos.
31-
+ [VideoClipEditViewTest](https://github.com/feixiao/VideoClipEditViewTest) 使用android原生的MediaExtractor,MediaCodec和opengl对视频进行编辑, 裁剪,滤镜, 特效
35+
36+
- [android-UniversalMusicPlayer](https://github.com/googlesamples/android-UniversalMusicPlayer)
37+
- [ijkplayer](https://github.com/feixiao/ijkplayer)
38+
- [FilterPlayer](https://github.com/feixiao/FilterPlayer) FilterPlayer, using mediaplayer and GLSurfaceView to add filter on videos.
39+
- [VideoClipEditViewTest](https://github.com/feixiao/VideoClipEditViewTest) 使用 android 原生的 MediaExtractor,MediaCodec 和 opengl 对视频进行编辑, 裁剪,滤镜, 特效
3240

3341
#### UI
34-
+ [Jetpack](https://github.com/android/compose-samples) Official Jetpack Compose samples.
42+
43+
- [Jetpack](https://github.com/android/compose-samples) Official Jetpack Compose samples.
3544

3645
#### 工具
37-
+ [Ubuntu下genymotion模拟器的安装与破解](http://www.jianshu.com/p/67b4e71380d1)
38-
+ [Genymotion 解决虚拟镜像下载速度特别慢的问题](http://blog.csdn.net/qing666888/article/details/51622762)
46+
47+
- [Ubuntu 下 genymotion 模拟器的安装与破解](http://www.jianshu.com/p/67b4e71380d1)
48+
- [Genymotion 解决虚拟镜像下载速度特别慢的问题](http://blog.csdn.net/qing666888/article/details/51622762)
3949

4050
#### 优化
41-
+ [native内存分析与监控](https://cloud.tencent.com/developer/article/1817357)
42-
+ [perfetto](./perfetto/ReadMe.md)
51+
52+
- [native 内存分析与监控](https://cloud.tencent.com/developer/article/1817357)
53+
- [perfetto](./perfetto/ReadMe.md)

0 commit comments

Comments
 (0)