Skip to content

Commit

Permalink
edit logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Tlaster committed Apr 23, 2016
1 parent daa6b50 commit 55d3bd5
Show file tree
Hide file tree
Showing 18 changed files with 1,721 additions and 1,336 deletions.
2 changes: 1 addition & 1 deletion OneEchan.Droid/Activity/MainActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

namespace OneEchan.Droid
{
[Activity(Label = "OneEchan", MainLauncher = true, Icon = "@drawable/icon", Theme = "@style/AppTheme.NoActionBar")]
[Activity(Label = "OneEchan", MainLauncher = true, Icon = "@mipmap/logo", Theme = "@style/AppTheme.NoActionBar")]
public class MainActivity : AppCompatActivity
{
private ExRecyclerView _recyclerView;
Expand Down
18 changes: 15 additions & 3 deletions OneEchan.Droid/OneEchan.Droid.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,6 @@
<ItemGroup>
<AndroidResource Include="Resources\values\Strings.xml" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\drawable\Icon.png" />
</ItemGroup>
<ItemGroup>
<None Include="Properties\AndroidManifest.xml" />
</ItemGroup>
Expand All @@ -137,6 +134,21 @@
<ItemGroup>
<AndroidResource Include="Resources\values\color.xml" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\mipmap-xxxhdpi\Icon.png" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\mipmap-hdpi\logo.png" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\mipmap-mdpi\logo.png" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\mipmap-xhdpi\logo.png" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\mipmap-xxhdpi\logo.png" />
</ItemGroup>
<Import Project="..\OneEchan.Shared\OneEchan.Shared.projitems" Label="Shared" />
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
<Import Project="..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets')" />
Expand Down
4 changes: 2 additions & 2 deletions OneEchan.Droid/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="moe.tlaster.OneEchan" android:versionCode="1" android:versionName="1.3.0" android:installLocation="auto">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="moe.tlaster.OneEchan" android:versionCode="1" android:versionName="1.4.0" android:installLocation="auto">
<uses-sdk android:targetSdkVersion="23" android:minSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:label="OneEchan" android:theme="@style/AppTheme" android:icon="@drawable/Icon">
<application android:label="OneEchan" android:icon="@mipmap/logo" android:theme="@style/AppTheme">
<activity android:name="net.hockeyapp.android.UpdateActivity" />
</application>
</manifest>
Loading

0 comments on commit 55d3bd5

Please sign in to comment.