Skip to content

Commit 9170ad9

Browse files
author
Vikram Pratap Singh
committed
prepare for publish
1 parent cc5d1d5 commit 9170ad9

8 files changed

Lines changed: 24 additions & 20 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,44 @@
11
## 1.0.0
22

3-
Initial Release
3+
* Initial Release
44

55
## 1.0.1
66

7-
Added example code.
7+
* Added example code.
88

99
## 1.0.2
1010

11-
Added description
11+
* Added description
1212

1313
## 1.0.2+1
1414

15-
Fixed minor bug
15+
* Fixed minor bug
1616

1717
## 1.0.2+2
1818

19-
Made SimpleCache singleton thread safe
19+
* Made SimpleCache singleton thread safe
2020

2121
## 1.0.3
2222

23-
Support iOS
23+
* Support iOS
2424

2525
## 2.0.0-dev.1
2626

27-
Based on video_player 2.1.1
27+
* Based on video_player 2.1.1
2828

2929
## 2.0.1
3030

31-
Change back to `CachedVideoPlayer` namespace.
31+
* Change back to `CachedVideoPlayer` namespace.
3232

3333
## 2.0.2
3434

35-
Fix some issues reported on Github.
35+
* Fix some issues reported on Github.
3636

3737
## 2.0.3
3838

39-
Add example and increase pub score.
39+
* Add example and increase pub score.
40+
41+
## 2.0.4
42+
* Preserve headers when using KTVHTTPCache
43+
* Skip caching in iOS if formatHint is `hls`
44+
* Update exoplayer dependencies and replace deprecations

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ Follow the Android and iOS configuration steps of the official [video_player](ht
1515
### Contributors
1616

1717
* [Vikram Pratap Singh](https://github.com/vikram25897)
18-
* [EnderTan](https://github.com/EnderTan)
18+
* [EnderTan](https://github.com/EnderTan)
19+
* [Philipp Bauer](https://github.com/ciriousjoker)

example/android/app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ android {
5757
signingConfig signingConfigs.debug
5858
}
5959
}
60+
namespace 'com.example.example'
6061
}
6162

6263
flutter {

example/android/app/src/debug/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.example">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- Flutter needs it to communicate with the running application
43
to allow setting breakpoints, to provide hot reload, etc.
54
-->

example/android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.example">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<application
43
android:label="example"
54
android:name="${applicationName}"

example/android/app/src/profile/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.example">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- Flutter needs it to communicate with the running application
43
to allow setting breakpoints, to provide hot reload, etc.
54
-->

example/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
buildscript {
2-
ext.kotlin_version = '1.6.10'
2+
ext.kotlin_version = '1.6.21'
33
repositories {
44
google()
55
mavenCentral()
66
}
77

88
dependencies {
9-
classpath 'com.android.tools.build:gradle:4.1.0'
9+
classpath 'com.android.tools.build:gradle:7.4.1'
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111
}
1212
}

example/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip

0 commit comments

Comments
 (0)