This repository has been archived by the owner on Apr 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Arjun-sna/dev
rel1
- Loading branch information
Showing
170 changed files
with
6,372 additions
and
2,105 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 |
---|---|---|
|
@@ -7,3 +7,4 @@ | |
/build | ||
/captures | ||
.externalNativeBuild | ||
*/release/* |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,7 @@ | ||
# Android Audio Recorder App | ||
Application to record audio and save it locally in the device. The application also visualizes the audio in wave format. It also supports recording in the background while you can continue using the device for other tasks. | ||
|
||
|
||
<a href='https://play.google.com/store/apps/details?id=in.arjsna.audiorecorder' target='_blank'><img height='50' style='border:0px;height:50px;' src='https://cdn.rawgit.com/Arjun-sna/Arjun-sna.github.io/f8228c83/raw/GooglePlay.png' border='0' alt='GooglePlay Link' /></a> | ||
|
||
<img src="https://arjun-sna.github.io/raw/audio_rec_1.png" width="250" /> <img src="https://arjun-sna.github.io/raw/audio_rec_2.png" width="250" /> <img src="https://arjun-sna.github.io/raw/audio_rec_3.png" width="250" /> <img src="https://arjun-sna.github.io/raw/audio_rec_4.png" width="250" /> <img src="https://arjun-sna.github.io/raw/audio_rec_6.png" width="250" /> |
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
2 changes: 1 addition & 1 deletion
2
...oicerecorder/ExampleInstrumentedTest.java → ...udiorecorder/ExampleInstrumentedTest.java
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 |
---|---|---|
@@ -1,43 +1,57 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="in.arjsna.voicerecorder"> | ||
package="in.arjsna.audiorecorder"> | ||
|
||
<uses-permission android:name="android.permission.RECORD_AUDIO" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.RECORD_AUDIO"/> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:allowBackup="false" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:roundIcon="@mipmap/ic_launcher_round" | ||
android:supportsRtl="true" | ||
android:theme="@style/AppTheme"> | ||
<activity android:name=".activities.MainActivity"> | ||
android:name=".AudioRecorderApp" | ||
android:theme="@style/Theme.AppCompat.Light.NoActionBar"> | ||
<activity | ||
android:name="in.arjsna.audiorecorder.activities.MainActivity" | ||
android:launchMode="singleTop"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN"/> | ||
|
||
<category android:name="android.intent.category.LAUNCHER"/> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".activities.SettingsActivity" | ||
android:screenOrientation="portrait" | ||
android:name="in.arjsna.audiorecorder.activities.SettingsActivity" | ||
android:label="@string/action_settings" | ||
android:parentActivityName=".activities.MainActivity"> | ||
android:parentActivityName="in.arjsna.audiorecorder.activities.MainActivity" | ||
android:screenOrientation="portrait"> | ||
<meta-data | ||
android:name="android.support.PARENT_ACTIVITY" | ||
android:value=".activities.MainActivity" /> | ||
android:value="in.arjsna.audiorecorder.activities.MainActivity"/> | ||
</activity> | ||
|
||
<provider | ||
android:name="android.support.v4.content.FileProvider" | ||
android:authorities="com.danielkim.soundrecorder.fileprovider" | ||
android:grantUriPermissions="true" | ||
android:exported="false"> | ||
android:authorities="in.arjsna.audiorecorder.fileprovider" | ||
android:exported="false" | ||
android:grantUriPermissions="true"> | ||
<meta-data | ||
android:name="android.support.FILE_PROVIDER_PATHS" | ||
android:resource="@xml/filepaths" /> | ||
android:resource="@xml/filepaths"/> | ||
</provider> | ||
<service android:name=".RecordingService" /> | ||
|
||
<service android:name="in.arjsna.audiorecorder.recording.AudioRecordService"/> | ||
|
||
<activity android:name="in.arjsna.audiorecorder.activities.PlayListActivity" | ||
android:parentActivityName="in.arjsna.audiorecorder.activities.MainActivity" | ||
android:screenOrientation="portrait"> | ||
<meta-data | ||
android:name="android.support.PARENT_ACTIVITY" | ||
android:value="in.arjsna.audiorecorder.activities.MainActivity"/> | ||
</activity> | ||
</application> | ||
|
||
</manifest> |
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,8 @@ | ||
package in.arjsna.audiorecorder; | ||
|
||
public class AppConstants { | ||
public static final String ACTION_PAUSE = "in.arjsna.audiorecorder.PAUSE"; | ||
public static final String ACTION_RESUME = "in.arjsna.audiorecorder.RESUME"; | ||
public static final String ACTION_STOP = "in.arjsna.audiorecorder.STOP"; | ||
public static final String ACTION_IN_SERVICE = "in.arjsna.audiorecorder.ACTION_IN_SERVICE"; | ||
} |
11 changes: 11 additions & 0 deletions
11
app/src/main/java/in/arjsna/audiorecorder/AudioRecorderApp.java
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,11 @@ | ||
package in.arjsna.audiorecorder; | ||
|
||
import android.app.Application; | ||
import com.orhanobut.hawk.Hawk; | ||
|
||
public class AudioRecorderApp extends Application { | ||
@Override public void onCreate() { | ||
super.onCreate(); | ||
Hawk.init(getApplicationContext()).build(); | ||
} | ||
} |
Oops, something went wrong.