Skip to content

Commit

Permalink
Merge pull request #5 from WirelessAlien/dev
Browse files Browse the repository at this point in the history
v2.1
  • Loading branch information
WirelessAlien authored Aug 18, 2023
2 parents cc48a21 + 1b2bd3b commit 59ebff1
Show file tree
Hide file tree
Showing 70 changed files with 1,256 additions and 1,716 deletions.
3 changes: 0 additions & 3 deletions .idea/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions .idea/copyright/GPL_3.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/copyright/profiles_settings.xml

This file was deleted.

2 changes: 1 addition & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,33 @@ android {
applicationId "com.wirelessalien.android.bhagavadgita"
minSdk 23
targetSdk 33
versionCode 3
versionName "2.0"
versionCode 4
versionName "2.1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
debug {
applicationIdSuffix ".debug"
versionNameSuffix 'Debug'
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '11'
}
viewBinding {
enabled = true
}
buildToolsVersion '33.0.1'
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,44 @@
*
*/

/*
* This file is part of BhagavadGitaApp. @WirelessAlien
*
* BhagavadGitaApp is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* BhagavadGitaApp is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with BhagavadGitaApp. If not, see <https://www.gnu.org/licenses/>.
*
*
*/

/*
* This file is part of BhagavadGitaApp. @WirelessAlien
*
* BhagavadGitaApp is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* BhagavadGitaApp is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with BhagavadGitaApp. If not, see <https://www.gnu.org/licenses/>.
*
*
*/

package com.wirelessalien.android.bhagavadgita

import androidx.test.platform.app.InstrumentationRegistry
Expand Down
80 changes: 23 additions & 57 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,61 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ This file is part of BhagavadGitaApp. @WirelessAlien
~
~ BhagavadGitaApp is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ BhagavadGitaApp is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with BhagavadGitaApp. If not, see <https://www.gnu.org/licenses/>.
~
~
-->

<!--
~ This file is part of BhagavadGitaApp. @WirelessAlien
~
~ BhagavadGitaApp is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ BhagavadGitaApp is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with BhagavadGitaApp. If not, see <https://www.gnu.org/licenses/>.
~
~
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.INTERNET" />


<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:usesCleartextTraffic="true"
android:label="@string/app_name"
android:name=".ApplicationClass"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.App.Starting"
android:theme="@style/AppTheme"
android:usesCleartextTraffic="true"
tools:targetApi="31">

<activity
android:name=".MainActivity"
android:exported="true" />
<activity
android:name=".activity.SplashActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand All @@ -66,38 +32,38 @@
<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>
<activity android:name=".activity.ChapterDetailActivity"
android:theme="@style/AppTheme"
android:exported="true">
</activity>
<activity
android:name=".activity.ChapterDetailActivity"
android:exported="false">
<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>
<activity android:name=".activity.VerseDetailActivity"
android:theme="@style/AppTheme"
android:exported="true">
<activity
android:name=".activity.VerseDetailActivity"
android:exported="false">
<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>
<activity android:name=".activity.AboutGitaActivity"
android:theme="@style/AppTheme"
android:exported="true">
<activity
android:name=".activity.AboutGitaActivity"
android:exported="false">
<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>
<activity android:name=".activity.VerseTranslationActivity"
android:theme="@style/AppTheme"
android:exported="true">
<activity
android:name=".activity.VerseTranslationActivity"
android:exported="false">
<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>
<activity android:name=".activity.HanumanChalisaActivity"
android:theme="@style/AppTheme"
android:exported="true">
<activity
android:name=".activity.HanumanChalisaActivity"
android:exported="false">
<meta-data
android:name="android.app.lib_name"
android:value="" />
Expand Down
Loading

0 comments on commit 59ebff1

Please sign in to comment.