Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
Android release 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
InvertedX committed Mar 28, 2019
1 parent 8866e1f commit f8e1f69
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 10 deletions.
24 changes: 20 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
# Instories 📽

🦋Beautiful flutter app for downloading Instagram stories 🚀
[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT)


<div align="center">
<img src="android/app/src/main/ic_launcher-web.png" width=200>
</div>

<h4 align="center">
🦋Beautiful flutter app for downloading Instagram stories 🚀
</h4>

<br/>
<br/>

<a href="https://play.google.com/store/apps/details?id=com.github.invertedx.stories">
<img alt='Get it on Google Play' src='https://play.google.com/intl/en_gb/badges/images/generic/en_badge_web_generic.png' width="230"></a>


<div style="text-align: center"><table><tr>
<td style="text-align: center">
<img src="art/demo.gif" width="600"/></a>
Expand All @@ -13,18 +29,18 @@
<img src="art/shot_3.jpg" width="610"/>
</tr></table>
</div>

[Demo video](https://imgur.com/a/FtSxWrL)


### Dependenices used

- [video_player](https://pub.dartlang.org/packages/video_player)
- [http](https://pub.dartlang.org/packages/http)
- [dio](https://pub.dartlang.org/packages/dio)
- [path_provider](https://pub.dartlang.org/packages/path_provider)
- [permission_handler](https://pub.dartlang.org/packages/permission_handler)

For help getting started with Flutter, view
[online documentation](https://flutter.io/docs), which offers tutorials,
samples, guidance on mobile development, and a full API reference.
5 changes: 2 additions & 3 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,11 @@ android {
}

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.github.invertedx.stories"
minSdkVersion 16
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
versionCode 2
versionName '0.0.1'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

Expand Down
7 changes: 7 additions & 0 deletions android/app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#Flutter Wrapper
-keep class io.flutter.app.** { *; }
-keep class io.flutter.plugin.** { *; }
-keep class io.flutter.util.** { *; }
-keep class io.flutter.view.** { *; }
-keep class io.flutter.** { *; }
-keep class io.flutter.plugins.** { *; }
Binary file added android/app/release/app-release.apk
Binary file not shown.
1 change: 1 addition & 0 deletions android/app/release/output.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":2,"versionName":"0.0.1","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<application
android:name="io.flutter.app.FlutterApplication"
android:label="stories"
android:label="instory"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
Expand Down
4 changes: 2 additions & 2 deletions lib/screens/widgets/stories_reel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ class _StoriesReel extends StatelessWidget {
transitionOnUserGestures: true,
tag: item.id,
child: new Container(
width: MediaQuery.of(context).size.width/1.8,
height: this.height > 420 ? 420 : this.height ,
width: MediaQuery.of(context).size.width/2,
height: this.height > 430 ? 430 : this.height ,
decoration: new BoxDecoration(
image: new DecorationImage(
fit: BoxFit.cover,
Expand Down

0 comments on commit f8e1f69

Please sign in to comment.