http://androidpala.com/install-android-app-programmatically/
Book reading, kannada, kids,
Book reading
start with kids books
imagination
tinkles
buy books every month
read during eating(i wont recommend), during waiting
read in the night, evening
read in saturday, sundays
read book to kids
improve english, imagination
do the same for kannada
read news paper
type the kannada word in roman script in google for meaning
learn kannada, teach kannad to kids
what books to read
go to book store
goodreads rating
billgates blog
chandamama archive
Budget
150 rs, 350 rs per week
300 pages
start with kids books
imagination
tinkles
buy books every month
read during eating(i wont recommend), during waiting
read in the night, evening
read in saturday, sundays
read book to kids
improve english, imagination
do the same for kannada
read news paper
type the kannada word in roman script in google for meaning
learn kannada, teach kannad to kids
what books to read
go to book store
goodreads rating
billgates blog
chandamama archive
Budget
150 rs, 350 rs per week
300 pages
project templates
blockly
json
form
----
template replacing
----
project templates
ex:
youtube to android app
parameters
1)project folder name
2)app name
3)package name
4)icon
5)screenshots
6)list of play list ids, their name
7)facebook page url
8)contact email
9)key store name
10)key store password
11)key store alias
12)keystore location
functionalities
1)keyword replace in file
2)keyword replace in project
3)directorye, path creation based on keyword
4)file creation app_key_store.jks
5)building the apk
6)reapting
7)condition based code
---
can not we use existing template framework
or
can not we use gradle
can not we use maven
can we combine template framework + gradle
----
do i need to code all
----
how can i build fast
----
how to create apk using android build tool from anroid project?
create hello again project
add label hello world
test locally using simulator
find command to create apk
https://www.built.io/blog/building-android-applications-apk-from-the-command-line
----
D:\ikbhal\git\friendlychat-android-master\HelloAgain
gradlew assembleRelease
#This creates an APK named module_name-unsigned.apk in project_name/module_name/build/outputs/apk/
cd D:\ikbhal\git\friendlychat-android-master\HelloAgain\app\build\outputs\apk\release
#zipalign -v -p 4 my-app-unsigned.apk my-app-unsigned-aligned.apk
zipalign -v -p 4 app-release-unsigned.apk app-release-unsigned-aligned.apk
#apksigner sign --ks my-release-key.jks --out my-app-release.apk my-app-unsigned-aligned.apk
apksigner sign --ks my-release-key.jks --out app-release.apk app-release-unsigned-aligned.apk
#apksigner verify my-app-release.apk
apksigner verify app-release.apk
---
android {
...
defaultConfig { ... }
signingConfigs {
release {
storeFile file("my-release-key.jks")
storePassword "password"
keyAlias "my-alias"
keyPassword "password"
}
}
buildTypes {
release {
signingConfig signingConfigs.release
...
}
}
}
---
gradlew assembleRelease
---
keytool -genkey -v -keystore my-release-key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias my-alias
---
D:\ikbhal\git\friendlychat-android-master\HelloAgain\app\build\outputs\apk\relea
se>keytool -genkey -v -keystore my-release-key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias my-alias
Enter keystore password:
Re-enter new password:
What is your first and last name?
[Unknown]: Muhammad Iqbal
What is the name of your organizational unit?
[Unknown]: Muhammad Iqbal
What is the name of your organization?
[Unknown]: Muhammad Iqbal
What is the name of your City or Locality?
[Unknown]: Bangalore
What is the name of your State or Province?
[Unknown]: Karnataka
What is the two-letter country code for this unit?
[Unknown]: IN
Is CN=Muhammad Iqbal, OU=Muhammad Iqbal, O=Muhammad Iqbal, L=Bangalore, ST=Karna
taka, C=IN correct?
[no]: yes
Generating 2,048 bit RSA key pair and self-signed certificate (SHA256withRSA) wi
th a validity of 10,000 days
for: CN=Muhammad Iqbal, OU=Muhammad Iqbal, O=Muhammad Iqbal, L=Bangalore
, ST=Karnataka, C=IN
Enter key password for
(RETURN if same as keystore password):
[Storing my-release-key.jks]
---
app/build.gradle
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.muhammad.iqbal.helloagain.helloagain"
minSdkVersion 26
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
signingConfigs {
release {
storeFile file("my-release-key.jks")
storePassword "Faaiza@786"
keyAlias "my-alias"
keyPassword "Faaiza@786"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
---
gradlew assembleRelease
---
can we specify all parameters of keytool as parameters
json
form
----
template replacing
----
project templates
ex:
youtube to android app
parameters
1)project folder name
2)app name
3)package name
4)icon
5)screenshots
6)list of play list ids, their name
7)facebook page url
8)contact email
9)key store name
10)key store password
11)key store alias
12)keystore location
functionalities
1)keyword replace in file
2)keyword replace in project
3)directorye, path creation based on keyword
4)file creation app_key_store.jks
5)building the apk
6)reapting
7)condition based code
---
can not we use existing template framework
or
can not we use gradle
can not we use maven
can we combine template framework + gradle
----
do i need to code all
----
how can i build fast
----
how to create apk using android build tool from anroid project?
create hello again project
add label hello world
test locally using simulator
find command to create apk
https://www.built.io/blog/building-android-applications-apk-from-the-command-line
----
D:\ikbhal\git\friendlychat-android-master\HelloAgain
gradlew assembleRelease
#This creates an APK named module_name-unsigned.apk in project_name/module_name/build/outputs/apk/
cd D:\ikbhal\git\friendlychat-android-master\HelloAgain\app\build\outputs\apk\release
#zipalign -v -p 4 my-app-unsigned.apk my-app-unsigned-aligned.apk
zipalign -v -p 4 app-release-unsigned.apk app-release-unsigned-aligned.apk
#apksigner sign --ks my-release-key.jks --out my-app-release.apk my-app-unsigned-aligned.apk
apksigner sign --ks my-release-key.jks --out app-release.apk app-release-unsigned-aligned.apk
#apksigner verify my-app-release.apk
apksigner verify app-release.apk
---
android {
...
defaultConfig { ... }
signingConfigs {
release {
storeFile file("my-release-key.jks")
storePassword "password"
keyAlias "my-alias"
keyPassword "password"
}
}
buildTypes {
release {
signingConfig signingConfigs.release
...
}
}
}
---
gradlew assembleRelease
---
keytool -genkey -v -keystore my-release-key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias my-alias
---
D:\ikbhal\git\friendlychat-android-master\HelloAgain\app\build\outputs\apk\relea
se>keytool -genkey -v -keystore my-release-key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias my-alias
Enter keystore password:
Re-enter new password:
What is your first and last name?
[Unknown]: Muhammad Iqbal
What is the name of your organizational unit?
[Unknown]: Muhammad Iqbal
What is the name of your organization?
[Unknown]: Muhammad Iqbal
What is the name of your City or Locality?
[Unknown]: Bangalore
What is the name of your State or Province?
[Unknown]: Karnataka
What is the two-letter country code for this unit?
[Unknown]: IN
Is CN=Muhammad Iqbal, OU=Muhammad Iqbal, O=Muhammad Iqbal, L=Bangalore, ST=Karna
taka, C=IN correct?
[no]: yes
Generating 2,048 bit RSA key pair and self-signed certificate (SHA256withRSA) wi
th a validity of 10,000 days
for: CN=Muhammad Iqbal, OU=Muhammad Iqbal, O=Muhammad Iqbal, L=Bangalore
, ST=Karnataka, C=IN
Enter key password for
(RETURN if same as keystore password):
[Storing my-release-key.jks]
---
app/build.gradle
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.muhammad.iqbal.helloagain.helloagain"
minSdkVersion 26
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
signingConfigs {
release {
storeFile file("my-release-key.jks")
storePassword "Faaiza@786"
keyAlias "my-alias"
keyPassword "Faaiza@786"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
---
gradlew assembleRelease
---
can we specify all parameters of keytool as parameters
Sodam mandal villages
Sodam Mandal - Chittoor
List of all towns and Villages in Sodam Mandal of Chittoor district, Andhra Pradesh. Complete details of Population, Religion, Literacy and Sex Ratio in tabular format.
# Villages Administrative Division Population
1 Ammagaripalle Sodam 3,247
2 Booragamanda Sodam 3,893
3 Cherukuvaripalle Sodam 3,854
4 Chintamakulapalle Sodam 773
5 Errathivaripalle Sodam 1,496
6 Gongivaripalle Sodam 1,741
7 Khambhamvaripalle Sodam 2,429
8 Nadigadda Sodam 1,553
9 Palamanda Sodam 1,662
10 Sodam Sodam 6,995
11 Thatiguntapalem Sodam 1,519
12 Thimmanayanipalle Sodam 2,187
13 Vootupalle Sodam 3,045
List of all towns and Villages in Sodam Mandal of Chittoor district, Andhra Pradesh. Complete details of Population, Religion, Literacy and Sex Ratio in tabular format.
# Villages Administrative Division Population
1 Ammagaripalle Sodam 3,247
2 Booragamanda Sodam 3,893
3 Cherukuvaripalle Sodam 3,854
4 Chintamakulapalle Sodam 773
5 Errathivaripalle Sodam 1,496
6 Gongivaripalle Sodam 1,741
7 Khambhamvaripalle Sodam 2,429
8 Nadigadda Sodam 1,553
9 Palamanda Sodam 1,662
10 Sodam Sodam 6,995
11 Thatiguntapalem Sodam 1,519
12 Thimmanayanipalle Sodam 2,187
13 Vootupalle Sodam 3,045
Villages & state i like
29 UTTAR PRADESH 97,593 97,825 96,483 1,130 344
15 MADHYA PRADESH 51,610 51,929 51,376 327 606
21 ODISHA 47,366 47,675 47,094 316 b
24 RAJASTHAN 43,304 43,264 42,274 1,120 227
31 WEST BENGAL 41,335 37,469 40,928 432 91
5 BIHAR 40,133 39,069 38,564 1,581 724
15 MADHYA PRADESH 51,610 51,929 51,376 327 606
21 ODISHA 47,366 47,675 47,094 316 b
24 RAJASTHAN 43,304 43,264 42,274 1,120 227
31 WEST BENGAL 41,335 37,469 40,928 432 91
5 BIHAR 40,133 39,069 38,564 1,581 724
How many villages in Andhra Pradesh, Rajastan, Bihar, Orissa
State |
Format A13 - Differences in IMIS & Census 2011 Village list | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*Based on rural population as per Census 2011 Data and Habitation Directory Data | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10k, 20k, 30k, 50k, 70k, 1lakh franchise
food rice
idli
dosa
panipuri
puncture shop
guava selling
banana selling
juice stall
cane juice
blogging
youtubing
if you have money invest,
no need to hire
no need to select place
no need to train
no need worry about operations
no need to worry firing employee
no need to worry about buying assets
no need to maintain shop
no need to manage shop
no need to buy raw materials
no need to worry about marketing
no need to worry about sales
expected return 25 to 30%
idli
dosa
panipuri
puncture shop
guava selling
banana selling
juice stall
cane juice
blogging
youtubing
if you have money invest,
no need to hire
no need to select place
no need to train
no need worry about operations
no need to worry firing employee
no need to worry about buying assets
no need to maintain shop
no need to manage shop
no need to buy raw materials
no need to worry about marketing
no need to worry about sales
expected return 25 to 30%
Hire & train for blogging...
Insha allh write truth and useful only
I hire Rabbu For 1hour per day early mornng.
I will pay 300 rs per month.
I need recharge his father mobile with internet pack.
I dont have money in bank, i need to ask mom /father to recharge.
Need to start
gmail
--
1)Create gmail account for him
share the details
2)Tell him how to create gmail account
3)How to login
4)How to logout
5)How to send mail
6)How to send mail with attachment
blogger
-------
1)Create blogger account or share my account details
2)Teach/share videos how to create blogger in hindi or telugu
3)How to login
4)Ho to post
5)How to lable the post
6)How to edit post
7)How to delete post
8)How to comment post
Youtube
---
1)Create channel or share my account details
2)How to login
3)mobile app install youtube if not there
4)view youtube videos
5)How like videos
6)How to subscribe youtube channel
7)How to unsusbcribe youtube channel
8)how to comment on youtube video
9)How to reply to the comment on youtube video
10)How to upload video to youtube
write title, description
11)Youtube mangeer, upload app
search, share it, install it, how to store
Find good story channel
------
1)live hindi
2)telugu infinity
3)telugu geeks
4)thunkable tutorial in hindi (search in youtube)
whatsapp
---
1)how to install whatsapp
2)How to send message
3)How to send images
4)how to send videos
5)How to create whatsapp group
Work
----
I)writing youtube video in text format
1)listen to youtube video channel videos
2)write what he understand exactly or approaximate also fine
3)send to whatsapp as message or take screenshot of writin
4)if he learn blogging directly upload to blogger
II)audito recording
----
upload audio/video recording of what he understand of the video
1)whatsapp message
2)audible app
3)youtube upload
III)videoscribe/whiteboard
----
animation video
first ask him to see few videso in livehindi,telugu infiity
install the app
tutorials on the app
practice with onescreen
practice with multiple screen
recreate same content with approaximation
IV)thunkable
-----
1)thunkable tutorial in hindi basic
2)create hello world app
3)create video playing app
4)image app
5)car transition (each screen car)
6)practice on code.org
7)share the apk by whatsapp
Supervision
----
Ammi(mastani ji)
Expansion
---
Train this code for 1week
then hire one more person
max: within a month
I hire Rabbu For 1hour per day early mornng.
I will pay 300 rs per month.
I need recharge his father mobile with internet pack.
I dont have money in bank, i need to ask mom /father to recharge.
Need to start
gmail
--
1)Create gmail account for him
share the details
2)Tell him how to create gmail account
3)How to login
4)How to logout
5)How to send mail
6)How to send mail with attachment
blogger
-------
1)Create blogger account or share my account details
2)Teach/share videos how to create blogger in hindi or telugu
3)How to login
4)Ho to post
5)How to lable the post
6)How to edit post
7)How to delete post
8)How to comment post
Youtube
---
1)Create channel or share my account details
2)How to login
3)mobile app install youtube if not there
4)view youtube videos
5)How like videos
6)How to subscribe youtube channel
7)How to unsusbcribe youtube channel
8)how to comment on youtube video
9)How to reply to the comment on youtube video
10)How to upload video to youtube
write title, description
11)Youtube mangeer, upload app
search, share it, install it, how to store
Find good story channel
------
1)live hindi
2)telugu infinity
3)telugu geeks
4)thunkable tutorial in hindi (search in youtube)
---
1)how to install whatsapp
2)How to send message
3)How to send images
4)how to send videos
5)How to create whatsapp group
Work
----
I)writing youtube video in text format
1)listen to youtube video channel videos
2)write what he understand exactly or approaximate also fine
3)send to whatsapp as message or take screenshot of writin
4)if he learn blogging directly upload to blogger
II)audito recording
----
upload audio/video recording of what he understand of the video
1)whatsapp message
2)audible app
3)youtube upload
III)videoscribe/whiteboard
----
animation video
first ask him to see few videso in livehindi,telugu infiity
install the app
tutorials on the app
practice with onescreen
practice with multiple screen
recreate same content with approaximation
IV)thunkable
-----
1)thunkable tutorial in hindi basic
2)create hello world app
3)create video playing app
4)image app
5)car transition (each screen car)
6)practice on code.org
7)share the apk by whatsapp
Supervision
----
Ammi(mastani ji)
Expansion
---
Train this code for 1week
then hire one more person
max: within a month
Labels:
assistant,
blogging,
coding,
Employee,
Hire,
Investment,
school kids,
Time,
youtube
10ideas July 29, 2018
Inshallah write 10 ideas
1)Create daily planner every day
do the same for others
help them do create daily planner
2)help neighbours to clean the house waste every day
3)help neighbours to buy milk / water can every day at the same rate
4)teach kids every day 10 minutes
5)create app 10minutes every day
help others do the same , start with son, kids, friends, wife, mom
6)create animation video 10 minutes every day
7)send quotes every day,read
8)send good jokes every day one
9)gift self improvement books every month
ask do the same with others, quran, seeruth un nabi sallalahu alai va sallam fazail amaal
10)one action every day
10minutes
self improvement
investment(may it be reading book), saving 1 rs
goal reaching step
1)Create daily planner every day
do the same for others
help them do create daily planner
2)help neighbours to clean the house waste every day
3)help neighbours to buy milk / water can every day at the same rate
4)teach kids every day 10 minutes
5)create app 10minutes every day
help others do the same , start with son, kids, friends, wife, mom
6)create animation video 10 minutes every day
7)send quotes every day,read
8)send good jokes every day one
9)gift self improvement books every month
ask do the same with others, quran, seeruth un nabi sallalahu alai va sallam fazail amaal
10)one action every day
10minutes
self improvement
investment(may it be reading book), saving 1 rs
goal reaching step
YouTube new Monetization eligibilty rule 2018 & Tips | in Telugu | Telug...
1000 subscribers per 12 months
4000 hrs view time per 12 months
https://aiafileforthunkable.com/jokes-app-aia-file-free-download-for-thunkable/
https://aiafileforthunkable.com/jokes-app-aia-file-free-download-for-thunkable/
android app building
create mobile website using php in mobile
android app locally webhost development
ksweb, kickweb
dory app
node.js /javascript
github for android
---
block programming language
---
https://developers.google.com/blockly/
android app locally webhost development
ksweb, kickweb
dory app
node.js /javascript
github for android
---
block programming language
---
https://developers.google.com/blockly/
Sell the app
wepurchaseapps website
app genuine installs
multiple countries us, england better
install >50k
no ad revenue fine, no revenue fine
no fraud instlal
no bad reviews , few ok
no bad rating
sell with source code, no new app with same code
with assets
--
other websies
chupamobile.com
appgeyser
selltheapp ..
app genuine installs
multiple countries us, england better
install >50k
no ad revenue fine, no revenue fine
no fraud instlal
no bad reviews , few ok
no bad rating
sell with source code, no new app with same code
with assets
--
other websies
chupamobile.com
appgeyser
selltheapp ..
daily ideas
1)appkart
buy android apps
2)project template
3)google app publishing with giving fields
create admob unit
create admob account
release new version on android app
4)thunkable like create ui on mobile
5)teach kids how to create app, how to blog, how to record video
create videos, upload videos
6)sunday planning
plan 1hr for what to do on sunday
7)daily day planning 15minutes
8)morning waking tips, sunnath, preparation
9)read book every motivation, group activity
10)do exercise every day group
11)promote app every day for atleast 1 month
install, daily use 5 minutes
buy android apps
2)project template
3)google app publishing with giving fields
create admob unit
create admob account
release new version on android app
4)thunkable like create ui on mobile
5)teach kids how to create app, how to blog, how to record video
create videos, upload videos
6)sunday planning
plan 1hr for what to do on sunday
7)daily day planning 15minutes
8)morning waking tips, sunnath, preparation
9)read book every motivation, group activity
10)do exercise every day group
11)promote app every day for atleast 1 month
install, daily use 5 minutes
How to EARN $200 to 400$ Per Day on Admob Using Android App | Hindi
How to EARN $200 to 400$ Per Day on Admob Using Android App | Hindi
complete daily tasks
i missing daily thinkgs
like going to toilet early morning
applying oil to hair
cleaning face with soap, not just water alone
trash the waste from home to outside
like going to toilet early morning
applying oil to hair
cleaning face with soap, not just water alone
trash the waste from home to outside
bath pe kado
bath pe kado
dont rely on others if possible if you can do it
have back up plan
check the work assigned to it
dont rely on others if possible if you can do it
have back up plan
check the work assigned to it
dont waste food -> eat home food -> cook daily
dont waste food
prepare food every day
atleast rice
dont eat outside food
cost money around 140rs
dont eat igli, wada
even free office biscuit
prepare food every day
atleast rice
dont eat outside food
cost money around 140rs
dont eat igli, wada
even free office biscuit
cook every day android app
cook every day app
contains
how to cook rice
encourage eating house food
say i did it today announce
contains
how to cook rice
encourage eating house food
say i did it today announce
planner , appointment, task priority,
every day planner
every week planner
every month planner
---
decide what you want
dont have multiple options
going jamaat, vacting t house, attending interviews
----
lets fix the priority
commit to it
---
dont give new appointment until you are sure
---
incase give appoint decided not go, not do it,
face it , cancel the appointment
every week planner
every month planner
---
decide what you want
dont have multiple options
going jamaat, vacting t house, attending interviews
----
lets fix the priority
commit to it
---
dont give new appointment until you are sure
---
incase give appoint decided not go, not do it,
face it , cancel the appointment
call reminder
i forgot to call javid almost week
app to remind calling people
mom, brother, nani, gopi, prabhu, relatives
---
app to remind calling people
mom, brother, nani, gopi, prabhu, relatives
---
tabliqhi jamaat karguzaari post
https://tablighijamaat.wordpress.com/2008/05/18/travelers%E2%80%99-tales-in-the-tablighi-jamaat/#more-9
aqlaq android app
an android app to share
aqlaq character
muhammed sallallahu va sallam stories
sahab stories
vali stories
quotes
videos
bayan
app promoition ideas and other target discussion
1)Icon for telugu geeks
2)firebase push notification
3)firebase database
---
fixing
1)back button in video activity
2)fixing favorite button not working
3)using settings
4)positioning fab properly
---
features
1)add banner ad in video activity
2)show rewarded video after favoriting
3)show full interstitial ad after loading new play list
4)loading play list ids from firebase
5)enabling ads/disabling from firebase
6)templating new app
7)create app from alphabet
8)create feature graphic from text
9)remembering them
10)mix videos from different play list
---
marketing
friends & family
target
---
1)10 installs
2)100 installs
3)1000 installs
---
icon
2)firebase push notification
3)firebase database
---
fixing
1)back button in video activity
2)fixing favorite button not working
3)using settings
4)positioning fab properly
---
features
1)add banner ad in video activity
2)show rewarded video after favoriting
3)show full interstitial ad after loading new play list
4)loading play list ids from firebase
5)enabling ads/disabling from firebase
6)templating new app
7)create app from alphabet
8)create feature graphic from text
9)remembering them
10)mix videos from different play list
---
marketing
friends & family
target
---
1)10 installs
2)100 installs
3)1000 installs
---
icon
dont enable ads, in kalima app
dont in kalima app
dont enable ads in kalima app
dont sell email ids, private data to others
you can use for others your app to promote
dont enable ads in kalima app
dont sell email ids, private data to others
you can use for others your app to promote
create personal network app
create your own personal network
ikbhal have prabhu as friend
prabhu have gopi as friend
gopi have suresh as friend
a message send will go to all people in network
---
the message should be very important, useful
ikbhal have prabhu as friend
prabhu have gopi as friend
gopi have suresh as friend
a message send will go to all people in network
---
the message should be very important, useful
similar to kalima target challenge daily routine, do for silence
other variation
silence
prayer
quran reading
quran memorising
hadis reading
hadis memorising
sadkah
exercise
skill learing
book reading
teach others
help others
start business
sell things
do difficult things
silence
prayer
quran reading
quran memorising
hadis reading
hadis memorising
sadkah
exercise
skill learing
book reading
teach others
help others
start business
sell things
do difficult things
kalima android app
jikr kalima every day
atleast 10minutes once
10 minuts twice morning, night
1hour every day
2 hours every day(morning, night)
invite family, relatives, friends
complete group target
1k, 10k, 1 lakh, 10 lakh, 1crore
remind others
see daily weekly, monthly reports of each, others
score board/your score, ranking
city, country, in family, family circle
international app
different themes
manual recording allowed
sell items jikr tasbi, right way hand tally counter
motivate for jikr
jikr benefits
confidence
believe in god
avoid wasting time
spent in making jikr
atleast 10minutes once
10 minuts twice morning, night
1hour every day
2 hours every day(morning, night)
invite family, relatives, friends
complete group target
1k, 10k, 1 lakh, 10 lakh, 1crore
remind others
see daily weekly, monthly reports of each, others
score board/your score, ranking
city, country, in family, family circle
international app
different themes
manual recording allowed
sell items jikr tasbi, right way hand tally counter
motivate for jikr
jikr benefits
confidence
believe in god
avoid wasting time
spent in making jikr
Youtube Channel to Android app July 23
1)Icon for telugu geeks
2)firebase push notification
3)firebase database
---
fixing
1)back button in video activity
2)fixing favorite button not working
3)using settings
4)positioning fab properly
---
features
1)add banner ad in video activity
2)show rewarded video after favoriting
3)show full interstitial ad after loading new play list
4)loading play list ids from firebase
5)enabling ads/disabling from firebase
6)templating new app
7)create app from alphabet
8)create feature graphic from text
9)remembering them
10)mix videos from different play list
---
marketing
friends & family
target
---
1)10 installs
2)100 installs
3)1000 installs
2)firebase push notification
3)firebase database
---
fixing
1)back button in video activity
2)fixing favorite button not working
3)using settings
4)positioning fab properly
---
features
1)add banner ad in video activity
2)show rewarded video after favoriting
3)show full interstitial ad after loading new play list
4)loading play list ids from firebase
5)enabling ads/disabling from firebase
6)templating new app
7)create app from alphabet
8)create feature graphic from text
9)remembering them
10)mix videos from different play list
---
marketing
friends & family
target
---
1)10 installs
2)100 installs
3)1000 installs
Experiment 5 btech ppor student in bangalore my bilwardaha halli house train for 1 year
syllabus
---
english
data structures
coding
designing
sales
marketing
startups
jobs
events
exercise
meditation
cooking
washing clothes
part time job
4hours
pay money with 1month salary after gettig job
duration: 3 month, 6months, 9 months, 1 year
---
english
data structures
coding
designing
sales
marketing
startups
jobs
events
exercise
meditation
cooking
washing clothes
part time job
4hours
pay money with 1month salary after gettig job
duration: 3 month, 6months, 9 months, 1 year
Create 3 people group in kadapa
pay 1k per month
spent 1hour
learn
----
android app
website
aptitude
english 5 words
blogging 1 post
youtubing 1 video
read book 5 pages every day
self improvement books
target:
4 apps every month
1 app every week
1 install every day
1st week sunday meeting 4 hours
daily upates
5 minutes
spent 1hour
learn
----
android app
website
aptitude
english 5 words
blogging 1 post
youtubing 1 video
read book 5 pages every day
self improvement books
target:
4 apps every month
1 app every week
1 install every day
1st week sunday meeting 4 hours
daily upates
5 minutes
Train 5 btech freshers for year to get job
expernse: 3 lakh
per month: 30k
facilities
food
bed
shared computer
shared internet
shared room
mentoring
Pay the money after getting job
syllabus
coding
design
aptitude
reasing
english
exericise
meditation
per month: 30k
facilities
food
bed
shared computer
shared internet
shared room
mentoring
Pay the money after getting job
syllabus
coding
design
aptitude
reasing
english
exericise
meditation
sell android app for 3 or 4 rs only
Buy standard app
like youtube channel to android app
Create form
where they can fill
app name, logo
then, creates apk
publish in play store
even google sdk
you can have all earning
for service we will accept money through paytm
that too
Labels:
add sdk,
android app,
buy,
marketing,
promote,
sell,
under 5 rs
Subscribe to:
Posts (Atom)