<center><h2>𝓖𝓻𝓮𝓮𝓽𝓲𝓷𝓰𝓼</h2></center> <div class="text-justify"> Hello dear Hive Learner, In the previous lecture we learn how to update, and delete data from the Firestore. Today we will learn how the services work in Android. Services are the background task that will work behind the scenes until we manually stop them. Most of the time we use the Services for the Android Notification. Let's get started.  ## [GitHub Link](https://github.com/faisalamin9696/HiveLearners2) Use this GitHub project to clone into your directory. The following lecture will update it so you will never miss the latest code. Happy Coding! ## What Should I Learn - What are the services - How to implement service in your project ## Assignment - Implement service in your project ## Procedure To implement the service we need to create an empty java class and extend it with the Service. I will create a java class ```MyService.java``` and extend it with the Service.  Now we need to override these methods. ``` public class MyService extends Service { @Override public void onCreate() { super.onCreate(); } @Override public int onStartCommand(Intent intent, int flags, int startId) { return super.onStartCommand(intent, flags, startId); } @Override public void onDestroy() { super.onDestroy(); } @Override public boolean onUnbind(Intent intent) { return super.onUnbind(intent); } @Nullable @Override public IBinder onBind(Intent intent) { return null; } } ```  We can also show a Toast message on Service start and on Service Stop. We also need to declare this service in the Android Manifest file.  Now we can start a stop this service. I am using the Welcom_Activity tabs to start and stop the service. ``` switch (position) { case 0: fragment = new Blogs_Fragment(); startService(new Intent(getBaseContext(), MyService.class)); break; case 1: fragment = new Transfers_Fragment(); stopService(new Intent(getBaseContext(), MyService.class)); break; ```  Let's run and check if the service is working or not. We need to change the tab to stop and start the service. We can implement it n the button press or in the activity start or destroy.</div>  <center>  <h2>Thank You</h2>  <div class="pull-left"><a href="https://discord.gg/7Bzqv4qUMT"> <img src="https://cdn.steemitimages.com/DQmXd6PwGUHRgSDkWtwKfDvdFpaLHXvXBdK7wnYZeqe1GUa/discord_animation_logo.gif"/></a> </center>
author | faisalamin |
---|---|
permlink | services-or-android-app-development |
category | hive-153850 |
json_metadata | "{"links": ["https://github.com/faisalamin9696/HiveLearners2", "https://discord.gg/7Bzqv4qUMT"], "image": ["https://images.ecency.com/DQmRk1tqy6x6T7NQSW47RNfFJDkfqgKYzX9DtMt9DNDRqUp/multi_purpose_5_.png", "https://images.ecency.com/DQmZyBXywFo7qbjyf33EouNSnwQg7xpVUua8Kf6kQqwunbX/image.png", "https://images.ecency.com/DQmQdxg8EFxwn9h2ZQ77bvtyG8pGif8qEHzSz1LXaytWzpN/image.png", "https://images.ecency.com/DQmWdANa4Ri1ogDuWhoETRpo5Vi8VfCQJqqrjK7D4ARgzoJ/image.png", "https://images.ecency.com/DQmNy73ctnDuqQNDoXfpP1EHVuDQ8osoWBKYvMTMHX1Nq4s/image.png", "https://images.ecency.com/DQmXWc3X3Pf2agPHYZ8t9dWHrEFXqfM5ueiXpJ7DQqW8srG/image.png", "https://images.ecency.com/DQmabQycJhW8DT8a634z3wQaVXvPZ5KMii2LYbaWZ3PsaRy/hl_divider.png", "https://images.ecency.com/DQmZ4HF3hjV4HwJXuw8vRJ6B6CiMC3kUkkoihjtm7z2Gii7/hl_footer_banner.png", "https://cdn.steemitimages.com/DQmXd6PwGUHRgSDkWtwKfDvdFpaLHXvXBdK7wnYZeqe1GUa/discord_animation_logo.gif"], "thumbnails": ["https://images.ecency.com/DQmRk1tqy6x6T7NQSW47RNfFJDkfqgKYzX9DtMt9DNDRqUp/multi_purpose_5_.png", "https://images.ecency.com/DQmZyBXywFo7qbjyf33EouNSnwQg7xpVUua8Kf6kQqwunbX/image.png", "https://images.ecency.com/DQmQdxg8EFxwn9h2ZQ77bvtyG8pGif8qEHzSz1LXaytWzpN/image.png", "https://images.ecency.com/DQmWdANa4Ri1ogDuWhoETRpo5Vi8VfCQJqqrjK7D4ARgzoJ/image.png", "https://images.ecency.com/DQmNy73ctnDuqQNDoXfpP1EHVuDQ8osoWBKYvMTMHX1Nq4s/image.png", "https://images.ecency.com/DQmXWc3X3Pf2agPHYZ8t9dWHrEFXqfM5ueiXpJ7DQqW8srG/image.png", "https://images.ecency.com/DQmabQycJhW8DT8a634z3wQaVXvPZ5KMii2LYbaWZ3PsaRy/hl_divider.png", "https://images.ecency.com/DQmZ4HF3hjV4HwJXuw8vRJ6B6CiMC3kUkkoihjtm7z2Gii7/hl_footer_banner.png", "https://cdn.steemitimages.com/DQmXd6PwGUHRgSDkWtwKfDvdFpaLHXvXBdK7wnYZeqe1GUa/discord_animation_logo.gif"], "users": ["Override", "Override", "Override", "Override", "Nullable", "Override"], "tags": ["hive-153850", "stem", "pakistan", "android", "firebase", "education", "development", "services"], "description": "", "app": "ecency/3.0.26-vision", "format": "markdown+html"}" |
created | 2022-08-27 14:30:24 |
last_update | 2022-08-27 14:30:24 |
depth | 0 |
children | 3 |
last_payout | 2022-09-03 14:30:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 10.992 HBD |
curator_payout_value | 10.915 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,444 |
author_reputation | 104,701,778,605,493 |
root_title | "Services | Android App Development | Lecture#57 | Hive Learners" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 116,082,415 |
net_rshares | 31,156,932,934,471 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 1,853,611,276 | 0.4% | ||
thecryptodrive | 0 | 6,078,394,481 | 0.16% | ||
mammasitta | 0 | 1,255,789,380 | 0.4% | ||
good-karma | 0 | 65,344,651,683 | 6.3% | ||
roelandp | 0 | 40,628,407,829 | 5% | ||
cloh76 | 0 | 532,700,739 | 0.4% | ||
bustillo | 0 | 773,522,985 | 40% | ||
raphaelle | 0 | 6,381,455,056 | 5% | ||
lordvader | 0 | 7,221,712,346 | 0.8% | ||
rmach | 0 | 4,800,455,284 | 5% | ||
lemouth | 0 | 243,088,725,104 | 10% | ||
lamouthe | 0 | 731,004,464 | 10% | ||
tfeldman | 0 | 742,123,737 | 0.4% | ||
seckorama | 0 | 8,831,157,358 | 5.3% | ||
ebargains | 0 | 4,878,826,993 | 14% | ||
metabs | 0 | 950,420,792 | 10% | ||
mcsvi | 0 | 110,893,988,480 | 50% | ||
cnfund | 0 | 1,408,308,041 | 0.8% | ||
funnyman | 0 | 2,013,991,698 | 8.4% | ||
justyy | 0 | 3,722,304,736 | 0.8% | ||
curie | 0 | 93,644,867,098 | 0.8% | ||
techslut | 0 | 24,249,966,566 | 4% | ||
slider2990 | 0 | 11,806,494,881 | 100% | ||
roguewriter | 0 | 4,154,006,946 | 5% | ||
steemstem | 0 | 584,207,317,896 | 10% | ||
esteemapp | 0 | 14,188,209,882 | 6.3% | ||
walterjay | 0 | 62,976,371,949 | 5% | ||
valth | 0 | 1,520,271,512 | 5% | ||
dna-replication | 0 | 349,152,957 | 10% | ||
steemitboard | 0 | 41,735,896,707 | 5% | ||
oluwatobiloba | 0 | 1,054,079,510 | 10% | ||
detlev | 0 | 2,239,256,710 | 0.24% | ||
lizanomadsoul | 0 | 2,311,198,630 | 3% | ||
mobbs | 0 | 9,092,752,093 | 5% | ||
eliel | 0 | 23,860,311,441 | 9.79% | ||
jerrybanfield | 0 | 2,761,736,513 | 0.8% | ||
roomservice | 0 | 638,881,664 | 0.4% | ||
rt395 | 0 | 1,362,304,358 | 1.5% | ||
bitrocker2020 | 0 | 1,308,431,048 | 0.12% | ||
sustainablyyours | 0 | 4,136,390,872 | 5% | ||
improv | 0 | 48,176,984,120 | 14% | ||
yehey | 0 | 1,537,342,373 | 0.8% | ||
samminator | 0 | 1,584,504,876 | 0.5% | ||
drwom | 0 | 1,130,949,994 | 3.15% | ||
alphacore | 0 | 2,250,083,768 | 2.26% | ||
mahdiyari | 0 | 1,182,711,775,151 | 80% | ||
lorenzor | 0 | 1,346,593,363 | 50% | ||
alexander.alexis | 0 | 5,881,863,565 | 10% | ||
jayna | 0 | 761,629,922 | 0.16% | ||
ew-and-patterns | 0 | 8,380,301,100 | 3% | ||
techken | 0 | 37,613,847,464 | 50% | ||
princessmewmew | 0 | 1,011,944,683 | 0.4% | ||
grapthar | 0 | 1,208,297,100 | 0.6% | ||
gunthertopp | 0 | 10,216,707,000 | 0.2% | ||
ludmila.kyriakou | 0 | 1,928,965,149 | 3% | ||
flatman | 0 | 639,572,010 | 0.8% | ||
analealsuarez | 0 | 1,339,486,242 | 50% | ||
minnowbooster | 0 | 1,119,254,812,222 | 20% | ||
codingdefined | 0 | 16,584,782,834 | 4.2% | ||
howo | 0 | 298,105,118,191 | 10% | ||
tsoldovieri | 0 | 1,000,305,390 | 5% | ||
neumannsalva | 0 | 588,732,711 | 0.4% | ||
stayoutoftherz | 0 | 17,804,213,968 | 0.2% | ||
abigail-dantes | 0 | 3,664,291,205 | 10% | ||
zonguin | 0 | 605,472,979 | 2.5% | ||
investingpennies | 0 | 2,052,622,909 | 0.8% | ||
stinawog | 0 | 1,053,071,017 | 14% | ||
ernick | 0 | 1,525,358,954 | 14% | ||
iamphysical | 0 | 16,323,234,223 | 90% | ||
zyx066 | 0 | 910,951,965 | 0.4% | ||
revo | 0 | 1,404,801,989 | 0.8% | ||
azulear | 0 | 1,804,101,039 | 100% | ||
psicoluigi | 0 | 771,749,672 | 50% | ||
thelordsharvest | 0 | 640,138,329 | 0.8% | ||
crokkon | 0 | 6,233,514,382 | 11.2% | ||
calatorulmiop | 0 | 51,941,148,184 | 50% | ||
estream.studios | 0 | 1,141,956,216 | 14% | ||
sorin.cristescu | 0 | 3,220,470,231 | 0.4% | ||
therealwolf | 0 | 9,420,335,395 | 0.8% | ||
inthenow | 0 | 20,109,742,690 | 25% | ||
meno | 0 | 2,982,377,431 | 0.4% | ||
isnochys | 0 | 7,948,249,048 | 3.4% | ||
esteem.app | 0 | 2,123,118,508 | 6.3% | ||
bhoa | 0 | 538,734,624 | 5% | ||
enzor | 0 | 619,222,153 | 10% | ||
bartosz546 | 0 | 991,784,240 | 0.4% | ||
rgau1985 | 0 | 2,303,011,535 | 100% | ||
carloserp-2000 | 0 | 892,130,337 | 100% | ||
postpromoter | 0 | 283,823,709,251 | 10% | ||
steveconnor | 0 | 555,944,826 | 0.4% | ||
paulmoon410 | 0 | 1,002,674,615 | 10% | ||
nicole-st | 0 | 1,797,748,443 | 0.4% | ||
drowningwhale | 0 | 1,993,540,736 | 100% | ||
smartsteem | 0 | 31,845,881,428 | 0.8% | ||
aboutcoolscience | 0 | 2,347,864,633 | 10% | ||
kenadis | 0 | 2,705,713,882 | 10% | ||
robotics101 | 0 | 2,496,822,182 | 10% | ||
punchline | 0 | 1,893,998,157 | 0.8% | ||
auleo | 0 | 548,503,376 | 1.26% | ||
sco | 0 | 2,666,190,755 | 10% | ||
ennyta | 0 | 986,442,648 | 50% | ||
juecoree | 0 | 30,580,748,373 | 35% | ||
intrepidphotos | 0 | 175,627,424,439 | 7.5% | ||
fineartnow | 0 | 499,565,120 | 0.4% | ||
hijosdelhombre | 0 | 40,545,875,789 | 40% | ||
fragmentarion | 0 | 2,396,700,020 | 10% | ||
utube | 0 | 602,352,430 | 0.8% | ||
curx | 0 | 67,647,809,465 | 14% | ||
manncpt | 0 | 3,431,700,468 | 3% | ||
neneandy | 0 | 881,688,522 | 0.8% | ||
pab.ink | 0 | 5,945,169,089 | 5% | ||
jnmarteau | 0 | 754,521,221 | 3% | ||
sportscontest | 0 | 720,243,377 | 0.8% | ||
cherryng | 0 | 767,235,543 | 1.26% | ||
miguelangel2801 | 0 | 790,736,345 | 50% | ||
fantasycrypto | 0 | 550,608,917 | 0.8% | ||
orlandumike | 0 | 17,064,213,632 | 20% | ||
geopolis | 0 | 626,285,284 | 10% | ||
robertbira | 0 | 1,040,493,863 | 2.5% | ||
alexdory | 0 | 1,571,617,590 | 10% | ||
takowi | 0 | 13,987,464,510 | 0.8% | ||
irgendwo | 0 | 1,614,190,483 | 0.8% | ||
charitybot | 0 | 4,778,979,662 | 100% | ||
cyprianj | 0 | 1,807,841,082 | 5% | ||
melvin7 | 0 | 3,107,881,458 | 5% | ||
francostem | 0 | 1,350,606,097 | 10% | ||
endopediatria | 0 | 694,884,251 | 20% | ||
croctopus | 0 | 1,476,609,760 | 100% | ||
superlotto | 0 | 2,623,671,075 | 0.8% | ||
bscrypto | 0 | 1,835,920,107 | 0.4% | ||
tomastonyperez | 0 | 16,994,559,017 | 50% | ||
elvigia | 0 | 11,134,213,508 | 50% | ||
sanderjansenart | 0 | 628,622,844 | 0.4% | ||
gadrian | 0 | 33,121,926,244 | 7.5% | ||
therising | 0 | 13,791,558,052 | 0.8% | ||
gifty-e | 0 | 568,534,249 | 80% | ||
de-stem | 0 | 5,480,634,410 | 9.9% | ||
sustainablelivin | 0 | 775,455,351 | 7% | ||
gogreenbuddy | 0 | 2,887,085,776 | 0.8% | ||
josedelacruz | 0 | 4,236,193,643 | 50% | ||
achimmertens | 0 | 990,606,578 | 0.4% | ||
charitymemes | 0 | 524,427,600 | 100% | ||
erickyoussif | 0 | 647,055,005 | 100% | ||
meanbees | 0 | 16,584,031,239 | 10% | ||
globalschool | 0 | 1,588,488,057 | 1.5% | ||
prayzz | 0 | 37,965,091,240 | 80% | ||
deholt | 0 | 542,290,974 | 8.5% | ||
anneporter | 0 | 722,582,435 | 3% | ||
steem.services | 0 | 32,178,243,655 | 14% | ||
diabonua | 0 | 702,637,254 | 0.4% | ||
temitayo-pelumi | 0 | 832,052,424 | 10% | ||
andrick | 0 | 859,747,016 | 50% | ||
motherofalegend | 0 | 1,460,214,131 | 5% | ||
doctor-cog-diss | 0 | 7,861,228,723 | 10% | ||
uche-nna | 0 | 724,814,250 | 0.64% | ||
anaestrada12 | 0 | 1,138,800,706 | 100% | ||
kehrwoche | 0 | 3,508,506,069 | 74.74% | ||
xves | 0 | 496,021,175 | 13% | ||
bflanagin | 0 | 897,870,405 | 0.4% | ||
armandosodano | 0 | 1,508,101,538 | 0.4% | ||
lifeskills-tv | 0 | 11,024,586,089 | 50% | ||
marivic10 | 0 | 849,861,739 | 2.5% | ||
goblinknackers | 0 | 989,362,210 | 7% | ||
kylealex | 0 | 4,563,063,612 | 10% | ||
cleanplanet | 0 | 2,189,584,967 | 0.24% | ||
otp-one | 0 | 2,769,218,975 | 35% | ||
fran.frey | 0 | 4,183,678,340 | 50% | ||
thelittlebank | 0 | 2,370,553,905 | 0.4% | ||
pboulet | 0 | 17,144,739,130 | 8% | ||
stem-espanol | 0 | 27,373,746,317 | 100% | ||
aleestra | 0 | 12,034,970,436 | 80% | ||
brianoflondon | 0 | 4,138,352,436 | 0.12% | ||
giulyfarci52 | 0 | 1,710,119,488 | 50% | ||
kristall97 | 0 | 23,259,543,931 | 100% | ||
steemcryptosicko | 0 | 1,579,698,616 | 0.16% | ||
ordinaryamerican | 0 | 1,740,673,848 | 14% | ||
cakemonster | 0 | 663,965,503 | 0.8% | ||
stem.witness | 0 | 548,806,701 | 10% | ||
devann | 0 | 4,018,918,219 | 3% | ||
tinyvoter | 0 | 1,641,886,538 | 14% | ||
optimizer | 0 | 1,278,999,811 | 14% | ||
infinite-love | 0 | 1,021,575,761 | 14% | ||
wilmer14molina | 0 | 1,021,767,740 | 50% | ||
jacuzzi | 0 | 3,964,061,340 | 2.1% | ||
steemstorage | 0 | 897,588,991 | 0.8% | ||
aqua.nano | 0 | 2,199,145,752 | 100% | ||
crowdwitness | 0 | 3,326,129,262 | 5% | ||
apokruphos | 0 | 2,808,905,739 | 1% | ||
limka | 0 | 130,330,002 | 81.29% | ||
steemean | 0 | 10,073,521,101 | 5% | ||
newton666 | 0 | 1,621,600,740 | 100% | ||
omonomo | 0 | 119,239,686,477 | 7% | ||
photographercr | 0 | 2,721,054,714 | 1.26% | ||
bergelmirsenpai | 0 | 935,961,534 | 14% | ||
epicdice | 0 | 536,000,116 | 0.24% | ||
monsterjamgold | 0 | 1,034,107,487 | 10% | ||
robibasa | 0 | 24,792,473,889 | 10% | ||
justlee87 | 0 | 2,109,567,489 | 100% | ||
aicu | 0 | 3,758,215,191 | 0.8% | ||
walterprofe | 0 | 2,372,604,330 | 5% | ||
zeruxanime | 0 | 653,190,571 | 5% | ||
stemgeeks | 0 | 16,804,751,467 | 50% | ||
stemcuration | 0 | 1,026,672,059 | 50% | ||
babytarazkp | 0 | 3,782,971,000 | 40% | ||
abh12345.stem | 0 | 509,595,708 | 25% | ||
dechuck | 0 | 17,246,300,668 | 50% | ||
stem.alfa | 0 | 2,779,143,063 | 100% | ||
odditiesandends | 0 | 541,332,906 | 100% | ||
steemstem-trig | 0 | 781,545,891 | 10% | ||
yggdrasil.laguna | 0 | 265,727,304 | 25% | ||
atheistrepublic | 0 | 761,519,354 | 0.4% | ||
cd-stem | 0 | 524,503,598 | 100% | ||
ibt-survival | 0 | 33,350,425,936 | 10% | ||
roamingsparrow | 0 | 975,020,275 | 0.4% | ||
chapmain | 0 | 116,540,999 | 100% | ||
apx | 0 | 119,834,133 | 11.2% | ||
peterale | 0 | 1,533,049,028 | 0.4% | ||
monica-ene | 0 | 516,921,259 | 0.4% | ||
stuntman.mike | 0 | 9,046,179,294 | 100% | ||
fengchao | 0 | 69,077,115,856 | 5% | ||
hivebuzz | 0 | 15,571,274,107 | 3% | ||
laruche | 0 | 46,154,484,447 | 1% | ||
stemsocial | 0 | 82,694,447,061 | 10% | ||
kronias | 0 | 21,102,081,488 | 80% | ||
maitt87 | 0 | 1,829,673,815 | 5% | ||
ecency | 0 | 2,803,621,789,760 | 6.3% | ||
taniagonzalez | 0 | 1,018,759,487 | 10% | ||
schmidi | 0 | 1,207,583,929 | 1.5% | ||
cronicasdelcesar | 0 | 3,180,619,813 | 100% | ||
quinnertronics | 0 | 19,910,524,126 | 8% | ||
ecency.stats | 0 | 2,387,338,673 | 6.3% | ||
gohive | 0 | 12,985,787,069 | 100% | ||
aabcent | 0 | 1,619,250,495 | 0.64% | ||
dorkpower | 0 | 862,317,603 | 25% | ||
leonelb | 0 | 1,977,530,750 | 50% | ||
stemcur | 0 | 813,706,014 | 100% | ||
meritocracy | 0 | 8,902,858,568 | 0.08% | ||
stemline | 0 | 3,178,587,813 | 25% | ||
sillybilly | 0 | 528,564,586 | 100% | ||
dcrops | 0 | 5,602,500,629 | 0.4% | ||
scooter77.stem | 0 | 504,172,374 | 50% | ||
bruno-kema | 0 | 19,547,817,080 | 50% | ||
krishu.stem | 0 | 703,581,461 | 100% | ||
ruari | 0 | 839,643,832 | 100% | ||
traderhive | 0 | 697,240,324 | 0.8% | ||
adamada.stem | 0 | 1,218,014,127 | 100% | ||
mahirabdullah | 0 | 29,886,959,180 | 60% | ||
nanggroe1 | 0 | 1,516,862,540 | 40% | ||
holovision.list | 0 | 1,726,286,067 | 50% | ||
holovision.stem | 0 | 2,443,089,645 | 50% | ||
ayesha-malik | 0 | 11,732,396,813 | 50% | ||
pinkfloyd878 | 0 | 4,426,865,565 | 100% | ||
star.stem | 0 | 1,648,068,091 | 50% | ||
solominer.stem | 0 | 799,471,755 | 100% | ||
offia66 | 0 | 7,019,238,182 | 100% | ||
untzuntzuntz | 0 | 633,895,825 | 1% | ||
chincoculbert | 0 | 6,567,274,235 | 30% | ||
seinkalar | 0 | 799,997,652 | 0.8% | ||
aries90 | 0 | 5,454,810,608 | 0.8% | ||
rencongland | 0 | 3,339,948,779 | 16% | ||
migka | 0 | 4,059,598,243 | 90% | ||
astrocat-3663 | 0 | 851,609,196 | 50% | ||
lazy-panda | 0 | 22,243,822,333,118 | 100% | ||
zestimony | 0 | 1,153,038,499 | 20% | ||
fairyberry | 0 | 1,127,313,276 | 3.15% | ||
estherscott | 0 | 5,069,070,319 | 25% | ||
aichanbot | 0 | 538,942,081 | 0.8% | ||
saboin.stem | 0 | 362,210,663 | 50% | ||
arasiko | 0 | 7,164,703,933 | 100% | ||
hivepakistan | 0 | 18,147,339,568 | 100% | ||
gi-de-on | 0 | 3,304,765,721 | 30% | ||
lawrence27 | 0 | 604,287,492 | 50% | ||
queenpriscilla | 0 | 960,144,220 | 50% | ||
emmanuel222 | 0 | 2,351,282,119 | 50% | ||
gone-hive | 0 | 4,600,142,754 | 50% | ||
dondido | 0 | 3,300,805,929 | 0.8% | ||
olivemarcel | 0 | 695,746,290 | 50% | ||
hive-learners | 0 | 2,580,710,107 | 100% | ||
auto-moderation | 0 | 10,510,713,098 | 98% | ||
prechidi | 0 | 756,104,517 | 50% | ||
bhdc | 0 | 807,668,183 | 0.8% | ||
niglys | 0 | 4,322,120,381 | 50% | ||
sayu907 | 0 | 5,270,493,311 | 100% | ||
mishkatfatima | 0 | 724,223,915 | 50% | ||
xyz.store | 0 | 636,111,858 | 50% | ||
minas-glory | 0 | 742,431,878 | 0.4% | ||
the-grandmaster | 0 | 619,330,429 | 0.4% | ||
the-burn | 0 | 793,889,552 | 0.4% |
**Yay!** 🤗<br>Your content has been **boosted with Ecency Points**, by @faisalamin. <br>Use Ecency daily to boost your growth on platform! <br><br><b>Support Ecency</b><br>[Vote for new Proposal](https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B197%5D&approve=true)<br>[Delegate HP and earn more](https://ecency.com/hive-125125/@ecency/daily-100-curation-rewards)
author | ecency |
---|---|
permlink | re-2022827t15491236z |
category | hive-153850 |
json_metadata | {"tags":["ecency"],"app":"ecency/3.0.20-welcome","format":"markdown+html"} |
created | 2022-08-27 15:49:12 |
last_update | 2022-08-27 15:49:12 |
depth | 1 |
children | 0 |
last_payout | 2022-09-03 15:49:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 380 |
author_reputation | 628,550,208,526,238 |
root_title | "Services | Android App Development | Lecture#57 | Hive Learners" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 116,084,278 |
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-faisalamin-services-or-android-app-development-20220828t005021700z |
category | hive-153850 |
json_metadata | {"app":"STEMsocial"} |
created | 2022-08-28 00:50:21 |
last_update | 2022-08-28 00:50:21 |
depth | 1 |
children | 0 |
last_payout | 2022-09-04 00:50:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 565 |
author_reputation | 22,928,211,284,618 |
root_title | "Services | Android App Development | Lecture#57 | Hive Learners" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 116,096,844 |
net_rshares | 0 |
Hi @faisalamin, Do you know you could have used the tag #diy to earn BUIDL tokens. In case you are not aware, read this [post](https://peakd.com/hive-167922/@invest.country/build-it-the-hidden-treasure-that-you-need-to-know) to know the kinds of content you could post using #diy tag. Because most people are not aware of the potential of BUIDL token, it can be bought at very cheap price now. Posted using [HiveLIST](https://www.hivelist.org/@xyz.store/re-faisalamin-l7g4kt2v)
author | xyz.store |
---|---|
permlink | re-faisalamin-l7g4kt2v |
category | hive-153850 |
json_metadata | {"tags":["hivelist","diy"],"format":"markdown","canonical_url":"https://www.hivelist.org/@xyz.store/re-faisalamin-l7g4kt2v","app":"hivelist/1.1.0"} |
created | 2022-08-30 11:47:51 |
last_update | 2022-08-30 11:47:51 |
depth | 1 |
children | 0 |
last_payout | 2022-09-06 11:47:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 482 |
author_reputation | 679,821,285,816 |
root_title | "Services | Android App Development | Lecture#57 | Hive Learners" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 116,165,772 |
net_rshares | 0 |