An open API service indexing awesome lists of open source software.

https://github.com/armcha/meet-my-app


https://github.com/armcha/meet-my-app

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# Meet-My-App

## Simple application intro

![](screens/screen1.png)
![](screens/screen2.png)
![](screens/gif1.gif)

![](screens/beta.png)
#Installation
-----------------------

Gradle:
```groovy
compile 'com.github.armcha:MeetMyApp:0.3.3'
```
Maven:
```xml

com.github.armcha
MeetMyApp
0.3.3
pom

```

I'm too lazy to add description :smile: :scream:

If anyone has free time to add description, please add it. :joy: see [sample][1] here
[1]: https://github.com/armcha/Meet-My-App/tree/master/app/src/main

Set your activity style ```android:theme="@style/MeetMyAppStyle"```
```xml






```

```java
public class MainActivity extends BaseIntroActivity{

@Override
public void init(@Nullable Bundle savedInstanceState) {
addFragment(new FragmentItem(R.layout.your_layout, ContextCompat.getColor(this, R.color.yourColor)));

//Options, intro will also work without this options
setVibrate(true);
setNextImage(R.drawable.next_icon);
setSkipText("SKIP");
setDoneText("DONE");
showSkipButton(true);
}
}
```

Your layout wouldn't contain background attribute!