https://github.com/ac-freeman/androidprovisioner
A program for the autonomous mass provisioning of unrooted Android devices.
https://github.com/ac-freeman/androidprovisioner
adb android automation java linux provision provisioning
Last synced: 28 days ago
JSON representation
A program for the autonomous mass provisioning of unrooted Android devices.
- Host: GitHub
- URL: https://github.com/ac-freeman/androidprovisioner
- Owner: ac-freeman
- Created: 2018-06-11T03:19:15.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-16T23:55:15.000Z (almost 8 years ago)
- Last Synced: 2025-03-23T23:31:50.143Z (about 1 year ago)
- Topics: adb, android, automation, java, linux, provision, provisioning
- Language: Java
- Homepage:
- Size: 55.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.html
Awesome Lists containing this project
README
AWS SDK for Java Sample
/* --------------------------------------------- */
/* AWS Developer Content Styles */
/* --------------------------------------------- */
body, div, p, td, th {
font-family : helvetica,sans-serif, arial;
font-size : 12px;
color : #000000;
}
.aws-h1, h1{
font-family: verdana, arial, helvetica, sans-serif;
font-size: 18px;
font-weight: bold;
color: #000000;
}
.aws-h2, h2{
font-family: verdana, arial, helvetica, sans-serif;
font-size: 14px;
color: #c60;
}
.aws-h3, h3{
font-family: verdana, arial, helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
color: #333333;
}
/*table ID selector styles*/
#aws-table {
border-top: 1px solid #cccccc;
border-left: 1px solid #cccccc;
width:95%;
}
#aws-table td{
font-size: 12px;
padding: 5px 5px 5px 5px;
border-bottom: 1px solid #cccccc;
border-right: 1px solid #cccccc;
vertical-align:top;
}
#aws-table th {
font-size: 12px;
padding: 5px 5px 5px 5px;
border-bottom: 1px solid #cccccc;
border-right: 1px solid #cccccc;
vertical-align:top;
background-color: #eeeeee;
color: #333333;
font-size: 12px;
font-weight: bold;
text-align: left;
}
/*code, note, and example styles*/
.aws-code .programlisting{
font-family: "Courier New", Courier, mono;
font-size: 12px;
margin-top: 5px;
margin-bottom: 5px;
color: #000066;
padding: 5px;
background-color: #eff7ff;
border: 1px dashed #333;
width:99%;
}
.aws-code-inline {
font-family: "Courier New", Courier, mono;
font-size: 11px;
}
.aws-note {
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: none;
border-bottom-style: solid;
border-left-style: none;
border-top-color: #CCCCCC;
border-right-color: #CCCCCC;
border-bottom-color: #CCCCCC;
border-left-color: #CCCCCC;
padding: 10px;
width:95%;
margin-left: 20px;
margin-right: 20px;
}
AWS SDK for Java Sample
This sample demonstrates how to make basic requests to AWS services using the AWS SDK for Java.
For lots more information on using the AWS SDK for Java, including information on high-level APIs
and advanced features, check out the
AWS SDK for Java Developer Guide.
Stay up to date with new features in the AWS SDK for Java by following the
AWS Java Developer Blog.
Prerequisites
- You must have a valid Amazon Web Services developer account. If you don't have an account yet, you can
get started for free.
Running the Sample
- Configure your AWS security credentials in a
.aws/credentialsfile in your home directory. For example:
[default]
aws_access_key_id = <your AWS access key>
aws_secret_access_key = <your AWS secret access key>
More information on configuring~/.aws/config
- Run
mvn package exec:javato build and run the AwsSdkSample class.