create account

Introducing the Dtube Mobile App (Unofficial Android App) by immawake

View this thread on: hive.blogpeakd.comecency.com
· @immawake · (edited)
$64.01
Introducing the Dtube Mobile App (Unofficial Android App)
![](https://i.imgur.com/rWNRw1X.png)
# Yes! A dtube Android app
I'm very happy to announce the first release of the Dtube unofficial app! I am confident that every dtube user will love this! 
![](https://i.imgur.com/cLn2y4e.png)

# Introduction
I really loved YouTube and the YouTube mobile app but as the madness of YouTube continued, I wondered. Could there be a better alternative? That's when I discovered d.tube, the decentralized video platform where you can earn money without ads. Sounds like a dream come true... I loved this site for what it was but it was also clearly in it's early stages as it even is now. I wanted this platform to really work and I knew one very important aspect of a website like this would be a mobile app. Being an experienced mobile app developer and seeing that none existed, I sought out to make my own. When I began I didn't even know anything about the Steemit API's and I began in the worst way possible. I began by downloading the whole dtube website HTML and parsing it for information. While I got a lot done this way in short time, I knew this was not ideal. First of all it was slow loading and secondly I didn't want to waste dtube's server power on my app. That's when I discovered the steem-js API. I began replacing small parts using this API where before I was parsing html. Eventually I replaced everything completely with the steem-js API for getting content. Everything loaded super fast now. While this app does use javascript for getting content, it is not a web-based app in the traditional sense such as apps that use Cordova or whatnot. That means UI is not rendered from the web languages which would often slow down apps significantly. This app is fast and looks great.

# Why use this App as opposed to the Website?
Essentially for the same reasons you would have used the mobile YouTube App. It's buttery smooth, it requires a lot less http requests, uses less data, requires less rendering power. It's beautiful. Much of the content required for web request calls are already locally loaded in the app. For example the steem-js script is locally inside the app as well as the embedded-video player created by d.tube. This allows for less fetching of content for faster loading.

# Features
* Sync app with your Steemit account
  * Subscriptions sync
  * Subscribers count sync
  * Subscription feed sync
  * Comment/reply to comments/like/dislike/subscribe using your account
* Secure login
  * This app stores your password securely using **AndroidKeyStore** and **RSA** encryption
* Privacy
   * This app is completely free from tracking of any sort!
* Search Steemit database for videos using the **asksteem** API
* A beautiful & fast UI
* Feeds
  * Subscription feed
  * Hot videos feed
  * Trending videos feed
  * New videos feed
  * Watch again feed (with removable history)
* Over the air updates to app using **github** repo
* it's a small 3mb app
* Much more and much more to come as development continues

# Ok! Enough with all the Details Already. How do I get it?
Glad you asked! The app can be downloaded as an **APK** (Android Package). This is a standard application package format than many of you already know about. I will eventually be putting this app on places like XDA Labs and Aptoide. Currently you can find the app on the [Github Release Page](https://github.com/powerpoint45/dtube-mobile-unofficial/releases/)  . Just download the **app-release.apk** to your phone. Next make sure you have **Unknown Sources** enabled on your phone. Go to your phone settings **>** Lock Screen and Security (or just Security depending on your phone firmware) **>** Check the box that says **Unknown Sources**. This will allow you to install apps outside the Play Store. Now you can press on the downloaded app in your status bar and it should prompt you to install the app. Let me know if you have any problems and I can help. Press the install button and the app will be installed in a couple moments. Now the app should show up in your app drawer as D.tube.

# Getting Started
Now that you got the app installed let's explore! When you open the app, you will be shown a screen like this presenting you with the hot videos feed
![](https://i.imgur.com/KRMK6tF.png)
Notice that if you click on your subscription feed or the recently watched tab that it will be completely blank. This is because you are not logged in and you have not watched any videos yet. I would start by logging in. This will unlock many of the features that makes Steemit & Dtube awesome. Press the account icon in the to right of the screen and you will be prompted to a login
![](https://i.imgur.com/6XYlckp.png)

Now enter your username and your Steemit posting key. To get your posting key, log into steemit, click your profile icon in the top right, choose "change password", select "permissions tab", press "show private key" besides the posting key, copy that key to your phone. What I do is store a file on my phone with that private key so I can go back to it anytime. You could also email it to yourself. Then just paste that private key into the posting password box and press login. As discussed earlier, your password is safely stored and encrypted inside the app. 

After logged in, your subscription feed will begin to populate and you will have your subscriptions in the right sidebar of the app as shown below
![](https://i.imgur.com/pGJgbPY.png)

Now I just encourage you to explore the app! Play some videos, comment on a video, subscribe to a channel, and like videos. I am sure you will love this app!

# Screenshots
![](https://i.imgur.com/8sOqEA4.png)

# Known Issues
There are some things I am still trying to work out completely. One is the formatting of video descriptions and comments. I'm using a very poor parsing method for this as found [here](https://github.com/powerpoint45/dtube-mobile-unofficial/blob/master/app/src/main/java/com/powerpoint45/dtube/Tools.java) in the method **getFormattedText**. Basically it needs to format it into normal HTML but it doesn't do very well as links are often fragmented and markdown is not properly processed. This is something I will have fixed soon in upcoming releases. Apart from that issue, one other one is that the app will freeze upon launch very rarely. I am not aware of what is causing this at the moment. Consider this release a beta build. More features and fixes are soon to come!

# Libraries used
I did not reinvent wheels. I am very appreciative of all those devs who make this work!
   * [com.github.curioustechizen.android-ago:library:1.3.4](https://github.com/curioustechizen/android-ago)
   * [com.squareup.picasso:picasso:2.5.2](https://github.com/square/picasso)
   * [com.github.javiersantos:AppUpdater:2.6.3](https://github.com/javiersantos/AppUpdater)
   * [com.makeramen:roundedimageview:2.3.0](https://github.com/vinc3m1/RoundedImageView)
   * [com.android.support:appcompat-v7:25.3.1](https://developer.android.com/topic/libraries/support-library/packages.html)
   * [com.android.support:design:25.3.1](https://developer.android.com/topic/libraries/support-library/packages.html)
   * [com.android.support:recyclerview-v7:25.3.1](https://developer.android.com/topic/libraries/support-library/packages.html)
   * [Steemit JS API ](https://github.com/steemit/steem-js)(locally stored on app)
   * [dtube embedded player](https://github.com/dtube/embed) (locally stored on app)
   * [Asksteem API](https://steemit.com/steemit/@thekyle/introducing-asksteem-a-steem-search-engine)

# Download
Just in case you missed the download link mentioned in the article. 
[Download Here](https://github.com/powerpoint45/dtube-mobile-unofficial/releases/)


# Proof of ownership
Utopian IO requires proof of ownership. Here is a [screenshot](https://i.imgur.com/ZKYzlAl.png) of me logged into github as powerpoint45 while pushing to my repo. Also see line #119 [here](https://github.com/powerpoint45/dtube-mobile-unofficial/blob/master/app/src/main/java/com/powerpoint45/dtube/MainActivity.java) that links back to this post in the app. I have early videos showing the early stages of development on this app as seen by [this](https://steemit.com/dtube/@immawake/gizv0rn5) post and on my [YouTube](https://www.youtube.com/watch?time_continue=1&v=GS9fVZe-YVI). Notice that the YouTube video is unlisted which was done so I could feature it in one of my posts. As for the alias difference between this account and my Github. I use multiple alias's online. My discord is also powerpoint45 (you may have seen me around), just like my github, [XDA](https://forum.xda-developers.com/member.php?u=4469251)(Check my donate link) and [Play Developers Account](https://play.google.com/store/apps/dev?id=7725486445697122776).


<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@immawake/introducing-the-dtube-mobile-app-unofficial-android-app">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 72 others
properties (23)
authorimmawake
permlinkintroducing-the-dtube-mobile-app-unofficial-android-app
categoryutopian-io
json_metadata"{"community":"utopian","app":"steemit/0.1","format":"markdown","repository":{"id":111875947,"name":"dtube-mobile-unofficial","full_name":"powerpoint45/dtube-mobile-unofficial","owner":{"login":"powerpoint45","id":3388345,"avatar_url":"https://avatars3.githubusercontent.com/u/3388345?v=4","gravatar_id":"","url":"https://api.github.com/users/powerpoint45","html_url":"https://github.com/powerpoint45","followers_url":"https://api.github.com/users/powerpoint45/followers","following_url":"https://api.github.com/users/powerpoint45/following{/other_user}","gists_url":"https://api.github.com/users/powerpoint45/gists{/gist_id}","starred_url":"https://api.github.com/users/powerpoint45/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/powerpoint45/subscriptions","organizations_url":"https://api.github.com/users/powerpoint45/orgs","repos_url":"https://api.github.com/users/powerpoint45/repos","events_url":"https://api.github.com/users/powerpoint45/events{/privacy}","received_events_url":"https://api.github.com/users/powerpoint45/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/powerpoint45/dtube-mobile-unofficial","description":"D.tube client app for Android","fork":false,"url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial","forks_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/forks","keys_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/keys{/key_id}","collaborators_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/teams","hooks_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/hooks","issue_events_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/issues/events{/number}","events_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/events","assignees_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/assignees{/user}","branches_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/branches{/branch}","tags_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/tags","blobs_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/git/refs{/sha}","trees_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/git/trees{/sha}","statuses_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/statuses/{sha}","languages_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/languages","stargazers_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/stargazers","contributors_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/contributors","subscribers_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/subscribers","subscription_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/subscription","commits_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/commits{/sha}","git_commits_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/git/commits{/sha}","comments_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/comments{/number}","issue_comment_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/issues/comments{/number}","contents_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/contents/{+path}","compare_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/compare/{base}...{head}","merges_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/merges","archive_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/downloads","issues_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/issues{/number}","pulls_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/pulls{/number}","milestones_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/milestones{/number}","notifications_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/labels{/name}","releases_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/releases{/id}","deployments_url":"https://api.github.com/repos/powerpoint45/dtube-mobile-unofficial/deployments","created_at":"2017-11-24T04:28:29Z","updated_at":"2017-11-24T06:25:17Z","pushed_at":"2017-11-24T06:07:37Z","git_url":"git://github.com/powerpoint45/dtube-mobile-unofficial.git","ssh_url":"git@github.com:powerpoint45/dtube-mobile-unofficial.git","clone_url":"https://github.com/powerpoint45/dtube-mobile-unofficial.git","svn_url":"https://github.com/powerpoint45/dtube-mobile-unofficial","homepage":null,"size":3141,"stargazers_count":1,"watchers_count":1,"language":"Java","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":1,"default_branch":"master","score":6.2265086},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","steemdev","dtube","android","app"],"links":["https://github.com/powerpoint45/dtube-mobile-unofficial/releases/","https://github.com/powerpoint45/dtube-mobile-unofficial/blob/master/app/src/main/java/com/powerpoint45/dtube/Tools.java","https://github.com/curioustechizen/android-ago","https://github.com/square/picasso","https://github.com/javiersantos/AppUpdater","https://github.com/vinc3m1/RoundedImageView","https://developer.android.com/topic/libraries/support-library/packages.html","https://github.com/steemit/steem-js","https://github.com/dtube/embed","https://steemit.com/steemit/@thekyle/introducing-asksteem-a-steem-search-engine","https://i.imgur.com/ZKYzlAl.png","https://github.com/powerpoint45/dtube-mobile-unofficial/blob/master/app/src/main/java/com/powerpoint45/dtube/MainActivity.java","https://steemit.com/dtube/@immawake/gizv0rn5","https://www.youtube.com/watch?time_continue=1&v=GS9fVZe-YVI","https://forum.xda-developers.com/member.php?u=4469251","https://play.google.com/store/apps/dev?id=7725486445697122776","https://utopian.io/utopian-io/@immawake/introducing-the-dtube-mobile-app-unofficial-android-app"],"image":["https://i.imgur.com/rWNRw1X.png","https://i.imgur.com/cLn2y4e.png","https://i.imgur.com/KRMK6tF.png","https://i.imgur.com/6XYlckp.png","https://i.imgur.com/pGJgbPY.png","https://i.imgur.com/8sOqEA4.png"]}"
created2017-11-24 21:43:06
last_update2017-11-26 07:23:09
depth0
children33
last_payout2017-12-01 21:43:06
cashout_time1969-12-31 23:59:59
total_payout_value46.817 HBD
curator_payout_value17.194 HBD
pending_payout_value0.000 HBD
promoted3.000 HBD
body_length8,938
author_reputation2,416,957,674,669
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries
0.
accountespoem
weight98
1.
accountfreedom
weight659
2.
accountmisterdelegation
weight549
3.
accountned
weight545
4.
accountruah
weight61
5.
accounttransisto
weight71
6.
accountwackou
weight53
7.
accountxeldal
weight27
max_accepted_payout1,000,000.000 HBD
percent_hbd5,000
post_id21,428,706
net_rshares32,837,983,206,729
author_curate_reward""
vote details (136)
@abhbarry ·
Terima kasih banyak,karena sangat membatu sahabat di steemit
properties (22)
authorabhbarry
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180131t171328199z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-31 17:13:42
last_update2018-01-31 17:13:42
depth1
children0
last_payout2018-02-07 17:13:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation237,972,333,422
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,906,060
net_rshares0
@ach3r0n ·
Nice that there's an DTube app now. However I would hold off there is an official app from DTube unless DTube officially acquires this app
👍  
properties (23)
authorach3r0n
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180422t015222050z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-22 01:52:21
last_update2018-04-22 01:52:21
depth1
children1
last_payout2018-04-29 01:52:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation25,439,030,171
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,401,673
net_rshares0
author_curate_reward""
vote details (1)
@immawake ·
I've talked with the Devs. I may be helping with the official app at some point.
👍  
properties (23)
authorimmawake
permlinkre-ach3r0n-re-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180423t193324463z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-23 19:33:27
last_update2018-04-23 19:33:27
depth2
children0
last_payout2018-04-30 19:33:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation2,416,957,674,669
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,736,043
net_rshares223,841,137
author_curate_reward""
vote details (1)
@adamhurwitz ·
How can I retrieve mp4's directly with the DTube API? (https://github.com/dtube)

I'm building an Android app to discover and organize crypto tech news across, text, audio, and video and creating a customized suggestion engine. Currently I am using YouTube's API. I would like to explore integrating with Dtube.
properties (22)
authoradamhurwitz
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20181109t215512819z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://github.com/dtube"],"app":"steemit/0.1"}
created2018-11-09 21:55:12
last_update2018-11-09 21:55:12
depth1
children0
last_payout2018-11-16 21:55:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length311
author_reputation9,601,562
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,999,539
net_rshares0
@anonymummy ·
What about for apple(iOS) me wanty too
👍  
properties (23)
authoranonymummy
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180611t174428421z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-11 17:44:30
last_update2018-06-11 17:44:30
depth1
children1
last_payout2018-06-18 17:44:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation75,793,339,577
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id60,329,597
net_rshares579,146,041
author_curate_reward""
vote details (1)
@bostrot ·
https://itunes.apple.com/us/app/dtube-viewer/id1358140255?l=de&ls=1&mt=8
properties (22)
authorbostrot
permlinkre-anonymummy-re-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180615t151658585z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://itunes.apple.com/us/app/dtube-viewer/id1358140255?l=de&amp;ls=1&amp;mt=8"],"app":"steemit/0.1"}
created2018-06-15 15:16:57
last_update2018-06-15 15:16:57
depth2
children0
last_payout2018-06-22 15:16:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation2,032,966,420,729
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id60,870,320
net_rshares0
@antonioanderson ·
Omg awesome any plans on a iOS app
👍  
properties (23)
authorantonioanderson
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180111t232002189z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-11 23:20:03
last_update2018-01-11 23:20:03
depth1
children1
last_payout2018-01-18 23:20:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation57,337,220,385
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,866,875
net_rshares2,240,035,939
author_curate_reward""
vote details (1)
@immawake ·
Not right now as I am not an IOS developer but I hear the official Dtube team may be creating an IOS app in the future.
properties (22)
authorimmawake
permlinkre-antonioanderson-re-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180116t052222767z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-16 05:22:24
last_update2018-01-16 05:22:24
depth2
children0
last_payout2018-01-23 05:22:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation2,416,957,674,669
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,864,589
net_rshares0
@bitgeek ·
comment
Congratulations @immawake, this post is the forth most rewarded post (based on pending payouts) in the last 12 hours written by a Dust account holder (accounts that hold between 0 and 0.01 Mega Vests). The total number of posts by Dust account holders during this period was 2917 and the total pending payments to posts in this category was $458.56. To see the full list of highest paid posts across all accounts categories, [click here](www.steemit.com/steemit/@bitgeek/payout-stats-report-for-25th-november-2017--part-ii). 

If you do not wish to receive these messages in future, please reply stop to this comment.
👍  ,
properties (23)
authorbitgeek
permlinkre-introducing-the-dtube-mobile-app-unofficial-android-app-20171125t072114
categoryutopian-io
json_metadata""
created2017-11-25 07:21:15
last_update2017-11-25 07:21:15
depth1
children2
last_payout2017-12-02 07:21:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length618
author_reputation13,049,044,453,787
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,459,851
net_rshares1,192,512,808
author_curate_reward""
vote details (2)
@justinpeyton ·
Can you upload to d tube using your phone ?
👍  
properties (23)
authorjustinpeyton
permlinkre-bitgeek-re-introducing-the-dtube-mobile-app-unofficial-android-app-20171125t072114-20180209t222548404z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-09 22:25:48
last_update2018-02-09 22:25:48
depth2
children1
last_payout2018-02-16 22:25:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation32,922,587,461
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,267,959
net_rshares0
author_curate_reward""
vote details (1)
@wavyplague ·
Did you ever find out? I can't find anything
properties (22)
authorwavyplague
permlinkre-justinpeyton-re-bitgeek-re-introducing-the-dtube-mobile-app-unofficial-android-app-20171125t072114-20180324t162845059z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-24 16:28:48
last_update2018-03-24 16:28:48
depth3
children0
last_payout2018-03-31 16:28:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation28,823,235,053
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,357,631
net_rshares0
@brianr702 · (edited)
Totally awesome. I’m so glad there are people who can help me figure out how this system works. Just quick suggestion if I may. Can you please make it like the older version of YouTube that constantly gave you recommendations based off of what you are watching at that moment. Example.. when I’m in a fiat currency rabbit hole; don’t recommend a cute kitten video, or something about what the president did or didn’t do. Just give me a recommendation for what I’m into at that moment. At least until I close the app. 
Sorry. That was kind of long winded, but I hope I can somewhat contribute to helping you. 
B.
👍  ,
properties (23)
authorbrianr702
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20171125t084324118z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-11-25 08:43:24
last_update2017-11-25 08:44:12
depth1
children1
last_payout2017-12-02 08:43:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length611
author_reputation3,029,811,482
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,464,961
net_rshares1,583,103,569
author_curate_reward""
vote details (2)
@immawake ·
Thanks! Ya that sounds like a great idea. And plus i'll be adding a settings page soon and that could be an option. Basically the reason I did it the way I did (where the reccomended videos are just other videos from the current author), is because that is the way d.tube currently does it. Plus it was quicker to implement since I wanted to get it ready for a release :D
👍  ,
properties (23)
authorimmawake
permlinkre-brianr702-re-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20171125t085207339z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-11-25 08:52:09
last_update2017-11-25 08:52:09
depth2
children0
last_payout2017-12-02 08:52:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length371
author_reputation2,416,957,674,669
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,465,533
net_rshares1,160,529,921
author_curate_reward""
vote details (2)
@cierek ·
Short question. I am a software developer and would like to use the dtube logo in my app (there would be "share on dtube" or "visit my dtube" icon. Can I use it?
👍  
properties (23)
authorcierek
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180419t082439282z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-19 08:25:30
last_update2018-04-19 08:25:30
depth1
children1
last_payout2018-04-26 08:25:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length161
author_reputation12,785,945,652
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,905,972
net_rshares0
author_curate_reward""
vote details (1)
@immawake ·
sure that's fine.
👍  
properties (23)
authorimmawake
permlinkre-cierek-re-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180423t193420803z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-23 19:34:24
last_update2018-04-23 19:34:24
depth2
children0
last_payout2018-04-30 19:34:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation2,416,957,674,669
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,736,164
net_rshares611,193,705
author_curate_reward""
vote details (1)
@djfatttylivvver ·
Hi.  Is there any way to keep the video (sound) playing when the phone locks?
properties (22)
authordjfatttylivvver
permlinkpxz5p4
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-09-17 12:07:51
last_update2019-09-17 12:07:51
depth1
children0
last_payout2019-09-24 12:07:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation318,653,631,458
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,662,112
net_rshares0
@edgar-trem ·
Hey there, how can I contact you? I've already cloned and looked at the project, I can definitely see some room for improvement and some things I think would be pretty cool to add. 
👍  
properties (23)
authoredgar-trem
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20171126t020958975z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2017-11-26 02:09:57
last_update2017-11-26 02:09:57
depth1
children1
last_payout2017-12-03 02:09:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation4,926,579,982,162
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,532,242
net_rshares1,629,329,629
author_curate_reward""
vote details (1)
@immawake ·
Do you have a discord? powerpoint45#0582
properties (22)
authorimmawake
permlinkre-edgar-trem-re-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20171126t030352630z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-11-26 03:03:57
last_update2017-11-26 03:03:57
depth2
children0
last_payout2017-12-03 03:03:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation2,416,957,674,669
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,535,014
net_rshares0
@ilazlow ·
Really nice app. Good work!
👍  ,
properties (23)
authorilazlow
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180128t233513778z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-28 23:35:15
last_update2018-01-28 23:35:15
depth1
children0
last_payout2018-02-04 23:35:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation576,406,765
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,129,489
net_rshares2,195,435,838
author_curate_reward""
vote details (2)
@lorenzopistolesi ·
$0.75
Hi. Thank formyour gret work. I'm asking if it possible to download video too? Tks
👍  
properties (23)
authorlorenzopistolesi
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180601t201624253z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-01 20:16:24
last_update2018-06-01 20:16:24
depth1
children3
last_payout2018-06-08 20:16:24
cashout_time1969-12-31 23:59:59
total_payout_value0.568 HBD
curator_payout_value0.187 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation204,869,285,671,935
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,810,478
net_rshares203,108,787,168
author_curate_reward""
vote details (1)
@mshakib ·
Thank you sir...
properties (22)
authormshakib
permlinkre-lorenzopistolesi-re-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180601t231738748z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-01 23:17:54
last_update2018-06-01 23:17:54
depth2
children2
last_payout2018-06-08 23:17:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation-458,043,587,414
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,828,892
net_rshares0
@sujonmia ·
Most welcome sir..
properties (22)
authorsujonmia
permlinkre-mshakib-re-lorenzopistolesi-re-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180601t232312224z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-01 23:23:27
last_update2018-06-01 23:23:27
depth3
children1
last_payout2018-06-08 23:23:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation-300,396,202,589
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,829,372
net_rshares0
@mcfarhat ·
Thank you for your contribution.
We are happy to accept this once you provide **proof of work**, as in confirmation that the github work/account belongs to you, along with relevant pull requests.

Please edit your contribution accordingly to reapply for approval.
See the [Utopian Rules](https://utopian.io/rules). 
You can contact us on [Discord](https://discord.gg/UCvqCsx).
**[[utopian-moderator]](https://utopian.io/moderators)**
👍  , ,
properties (23)
authormcfarhat
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20171125t102305591z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2017-11-25 10:23:12
last_update2017-11-25 10:23:12
depth1
children2
last_payout2017-12-02 10:23:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length433
author_reputation150,651,671,367,256
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,471,017
net_rshares1,678,262,800
author_curate_reward""
vote details (3)
@immawake · (edited)
I added a Proof of ownership section in my article (at the bottom). README.md links to my Steemit acccount. I wasn't sure what you meant by " relevant pull requests" as I have never been too good with git. I just asked on Utopian discord about it. Oh and my discord is also powerpoint45 just like my github, [XDA](https://forum.xda-developers.com/member.php?u=4469251) and [Play Developers Account](https://play.google.com/store/apps/dev?id=7725486445697122776). I hope this is enough proof for you...
👍  
properties (23)
authorimmawake
permlinkre-mcfarhat-re-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20171125t184506239z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://forum.xda-developers.com/member.php?u=4469251","https://play.google.com/store/apps/dev?id=7725486445697122776"],"app":"steemit/0.1"}
created2017-11-25 18:45:06
last_update2017-11-25 18:51:42
depth2
children1
last_payout2017-12-02 18:45:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length501
author_reputation2,416,957,674,669
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,507,315
net_rshares0
author_curate_reward""
vote details (1)
@mcfarhat ·
Thank you, yes that looks good now.
Contribution approved :)
👍  ,
properties (23)
authormcfarhat
permlinkre-immawake-re-mcfarhat-re-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20171125t204055354z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2017-11-25 20:41:03
last_update2017-11-25 20:41:03
depth3
children0
last_payout2017-12-02 20:41:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation150,651,671,367,256
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,514,651
net_rshares1,663,917,386
author_curate_reward""
vote details (2)
@politicalcartoon ·
If I get he app will dtube find all my missing videos. 4 months of daily videos gone. Blockchain isn't permanent like they say. I was told it's a bug.  I think it's censorship.
properties (22)
authorpoliticalcartoon
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20181027t024201323z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-10-27 02:42:03
last_update2018-10-27 02:42:03
depth1
children0
last_payout2018-11-03 02:42:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length176
author_reputation313,696,025,018
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,128,188
net_rshares0
@se3ek ·
Nice app!
The only thing stopping me from using it right now is the apparent lack in Chromecast support. Are there any plans to add that feature?
properties (22)
authorse3ek
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180129t145026646z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-29 14:50:24
last_update2018-01-29 14:50:24
depth1
children0
last_payout2018-02-05 14:50:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length145
author_reputation0
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,307,504
net_rshares0
@tibfox ·
Hey thanks for the really good sounding work!
But I have a problem with logging into my account.. I tried it a few times with my correct account data (username + posting key). The form is loading a really short time but then nothing happens. 
I am using Samsung galaxy s7 edge with android 7.
Could you please help me? 
👍  
properties (23)
authortibfox
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180312t081025611z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-03-12 08:10:39
last_update2018-03-12 08:10:39
depth1
children0
last_payout2018-03-19 08:10:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length319
author_reputation194,035,142,248,693
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,859,754
net_rshares0
author_curate_reward""
vote details (1)
@tomcarpenter ·
Thanks for this.  I have been waiting for the mobile app for a bit.  I have installed it on my Samsung Galaxy S5 and it works OK. I can't get it on my Samsung tablet though.  Is it only suitable for later Android versions?
👍  
properties (23)
authortomcarpenter
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180205t163258816z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-05 16:32:57
last_update2018-02-05 16:32:57
depth1
children2
last_payout2018-02-12 16:32:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length222
author_reputation907,472,319,016
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,184,011
net_rshares0
author_curate_reward""
vote details (1)
@immawake ·
It only works on Android 4.4+. Check system settings/about on your tablet to see if you are running Android 4.4+.
properties (22)
authorimmawake
permlinkre-tomcarpenter-re-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180205t235235082z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-05 17:52:33
last_update2018-02-05 17:52:33
depth2
children1
last_payout2018-02-12 17:52:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation2,416,957,674,669
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,199,039
net_rshares0
@tomcarpenter · (edited)
Thanks for getting back. My tablet is Android 5.1.1 and my phone is Android 6.0.1.
properties (22)
authortomcarpenter
permlinkre-immawake-re-tomcarpenter-re-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20180205t185511862z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-05 18:55:12
last_update2018-02-05 18:55:27
depth3
children0
last_payout2018-02-12 18:55:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation907,472,319,016
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,210,399
net_rshares0
@utopian-io ·
### Hey @immawake I am @utopian-io. I have just upvoted you at 17% Power!
#### Achievements
- You have less than 500 followers. Just gave you a gift to help you succeed!
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
👍  , , , ,
properties (23)
authorutopian-io
permlinkre-immawake-introducing-the-dtube-mobile-app-unofficial-android-app-20171126t174806354z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2017-11-26 17:48:06
last_update2017-11-26 17:48:06
depth1
children0
last_payout2017-12-03 17:48:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,097
author_reputation152,955,367,999,756
root_title"Introducing the Dtube Mobile App (Unofficial Android App)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,596,293
net_rshares1,733,329,393
author_curate_reward""
vote details (5)