-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
4,005 additions
and
773 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,28 @@ | ||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:0.7.+' | ||
} | ||
} | ||
apply plugin: 'android' | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
android { | ||
compileSdkVersion 19 | ||
buildToolsVersion "19.0.1" | ||
|
||
defaultConfig { | ||
minSdkVersion 7 | ||
targetSdkVersion 19 | ||
versionCode 1 | ||
versionName "1.0" | ||
} | ||
buildTypes { | ||
release { | ||
runProguard false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
compile 'com.android.support:appcompat-v7:+' | ||
compile fileTree(dir: 'libs', include: '*.jar') | ||
compile files('libs/wversionmanager-1.1.jar') | ||
compile files('libs/GoogleAdMobAdsSdk-6.4.1.jar') | ||
compile files('libs/adcolony.jar') | ||
compile files('libs/appflood-2.1.jar') | ||
compile files('libs/GoogleAdMobAdsSdk-6.4.1.jar') | ||
compile files('libs/wversionmanager-1.1.jar') | ||
compile project(':slidingbar') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" > | ||
|
||
<gradient | ||
android:endColor="#33000000" | ||
android:centerColor="#11000000" | ||
android:startColor="#00000000" /> | ||
|
||
</shape> |
62 changes: 62 additions & 0 deletions
62
AppSpecificOrientation/src/main/res/layout/slidingmenu.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
|
||
|
||
<CheckBox | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="@string/setOnBoot" | ||
android:textSize="16sp" | ||
android:id="@+id/sliding_menu_1" | ||
/> | ||
|
||
<CheckBox | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="@string/permNotification" | ||
android:textSize="16sp" | ||
android:id="@+id/sliding_menu_2" | ||
android:layout_below="@id/sliding_menu_1" | ||
/> | ||
|
||
<TextView | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="@string/howTo" | ||
android:textSize="16sp" | ||
android:id="@+id/sliding_menu_3" | ||
android:layout_below="@+id/sliding_menu_2" | ||
android:layout_marginLeft="15dp"/> | ||
|
||
<TextView | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="@string/about" | ||
android:textSize="16sp" | ||
android:id="@+id/sliding_menu_4" | ||
android:layout_below="@+id/sliding_menu_3" | ||
android:layout_marginLeft="15dp"/> | ||
|
||
<TextView | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="@string/donate" | ||
android:textSize="16sp" | ||
android:id="@+id/sliding_menu_5" | ||
android:layout_below="@+id/sliding_menu_4" | ||
android:layout_marginLeft="15dp"/> | ||
|
||
<TextView | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="@string/titleLicense" | ||
android:textSize="16sp" | ||
android:id="@+id/sliding_menu_6" | ||
android:layout_below="@+id/sliding_menu_5" | ||
android:layout_marginLeft="15dp"/> | ||
|
||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.