Skip to content

Commit

Permalink
Newly added video playback function.
Browse files Browse the repository at this point in the history
新增加了视频播放功能

Signed-off-by: gohj99 <[email protected]>
  • Loading branch information
gohj99 committed Aug 22, 2024
1 parent 011e34b commit 0a430d6
Show file tree
Hide file tree
Showing 29 changed files with 1,042 additions and 246 deletions.
11 changes: 11 additions & 0 deletions README.ja-JP.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
</div>
</div>

![Screenshot](Screenshot.png)

## ダウンロード

ダウンロード: [Telewatch](https://github.com/gohj99/Telewatch/releases)
Expand All @@ -35,6 +37,15 @@ ADB シェル:
adb install Telewatch.apk
```

## 関数

- テキスト、写真、ビデオの表示またはダウンロード
- 写真やビデオを保存する
- テキスト送信
- メッセージ処理の編集
- 削除メッセージの処理
- リューズの回転をサポート

## 最小構成と推奨構成

- 最小メモリ (RAM): 1G
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,13 @@
/>
</a >
</div>
<picture>
<img src="Screenshot.png" />
</picture>
</div>

![Screenshot](Screenshot.png)

## Download

Download: [Telewatch](https://github.com/gohj99/Telewatch/releases)
Expand All @@ -35,6 +40,15 @@ ADB Shell:
adb install Telewatch.apk
```

## Functions

- View or download text, pictures, and videos
- Save pictures or videos
- Send text
- Edit message processing
- Delete message processing
- Support crown rotation

## Minimum and recommended requirements

- Minimum RAM: 1G
Expand Down
11 changes: 11 additions & 0 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
</div>
</div>

![Screenshot](Screenshot.png)

## 下载

下载: [Telewatch](https://github.com/gohj99/Telewatch/releases)
Expand All @@ -35,6 +37,15 @@ ADB Shell:
adb install Telewatch.apk
```

## 功能

- 文字、图片、视频查看或下载
- 保存图片或视频
- 文字发送
- 编辑消息处理
- 删除消息处理
- 支持表冠旋转

## 最低配置和推荐配置

- 最低内存(RAM): 1G
Expand Down
11 changes: 11 additions & 0 deletions README.zh-TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
</div>
</div>

![Screenshot](Screenshot.png)

## 下載

下載: [Telewatch](https://github.com/gohj99/Telewatch/releases)
Expand All @@ -35,6 +37,15 @@ ADB Shell:
adb install Telewatch.apk
```

## 功能

- 文字、圖片、影片檢視或下載
- 儲存圖片或視頻
- 文字發送
- 編輯訊息處理
- 刪除訊息處理
- 支援錶冠旋轉

## 最低配置和建議配置

- 最低記憶體(RAM): 1G
Expand Down
Binary file added Screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed Screenshot_1.png
Binary file not shown.
Binary file removed Screenshot_2.png
Binary file not shown.
Binary file removed Screenshot_3.png
Binary file not shown.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ android {
minSdk = 25
//noinspection OldTargetApi
targetSdk = 34
versionCode = 1
versionName = "1.0.7"
versionCode = 2
versionName = "1.1.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
12 changes: 12 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

<application
android:allowBackup="true"
Expand Down Expand Up @@ -60,6 +62,16 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
</application>

</manifest>
Loading

0 comments on commit 0a430d6

Please sign in to comment.