Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Sample_Java
===========
###Samplefor AnySDK_Framework_Java2.1.0
v2.1.0 -- 2015.10.29
库更新:
1、更新框架2.1.0
2、sample增加崩溃分析、录屏分享范例代码

###Samplefor AnySDK_Framework_Java2.0
v2.0 -- 2015.5.29
库更新:
Expand Down
Empty file modified proj.android/.classpath
100755 → 100644
Empty file.
50 changes: 0 additions & 50 deletions proj.android/.cproject

This file was deleted.

This file was deleted.

20 changes: 0 additions & 20 deletions proj.android/.project
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,6 @@
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
<dictionary>
<key>LaunchConfigHandle</key>
<value>&lt;project&gt;/.externalToolBuilders/org.eclipse.cdt.managedbuilder.core.genmakebuilder.launch</value>
</dictionary>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
Expand All @@ -35,19 +25,9 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.cdt.core.cnature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
<nature>org.eclipse.cdt.core.ccnature</nature>
</natures>
</projectDescription>
4 changes: 2 additions & 2 deletions proj.android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.anysdk.sample"
android:versionCode="1007"
android:versionName="1.2.2" >
android:versionCode="1010"
android:versionName="2.1.0" >

<uses-sdk
android:minSdkVersion="10"
Expand Down
Binary file modified proj.android/libs/arm64-v8a/libPluginProtocol.so
Binary file not shown.
Binary file modified proj.android/libs/armeabi-v7a/libPluginProtocol.so
Binary file not shown.
Binary file modified proj.android/libs/armeabi/libPluginProtocol.so
Binary file not shown.
Binary file modified proj.android/libs/libPluginProtocolForJava_fat.jar
Binary file not shown.
Binary file modified proj.android/libs/x86/libPluginProtocol.so
Binary file not shown.
Empty file modified proj.android/lint.xml
100755 → 100644
Empty file.
17 changes: 17 additions & 0 deletions proj.android/res/layout/activity_first.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:descendantFocusability="blocksDescendants">
<Button
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusable="false"
android:clickable="false"
/>



</LinearLayout>
8 changes: 7 additions & 1 deletion proj.android/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,13 @@
android:id="@+id/pushSystem"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Push system" />
android:text="Push system" />

<Button
android:id="@+id/RECSystem"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="REC system" />



Expand Down
36 changes: 36 additions & 0 deletions proj.android/res/layout/activity_rec.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<LinearLayout
android:id="@+id/ads"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<Button
android:id="@+id/startRecording"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="startRecording" />

<Button
android:id="@+id/stopRecording"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="stopRecording" />

<Button
android:id="@+id/shareVideo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="share" />




</LinearLayout>


</RelativeLayout>
8 changes: 4 additions & 4 deletions proj.android/res/layout/plugin_ads.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/image_ad"
android:id="@+id/plugin_image_ad"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/ui_ad" />
android:src="@drawable/plugin_ui_ad" />

<ImageButton
android:id="@+id/image_close"
android:id="@+id/plugin_image_close"
android:layout_width="20dip"
android:layout_height="20dip"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:src="@drawable/btn_close" />
android:src="@drawable/plugin_btn_close" />



Expand Down
Loading